diff --git a/test_qemu.xsh b/test_qemu.xsh deleted file mode 100755 index 13ba54f..0000000 --- a/test_qemu.xsh +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env xonsh -source test.xsh - -def main(): - # Equivalent of `set -e` in Bash - $RAISE_SUBPROC_ERROR = True - for distro in get_builds(): - print(f"Trying {distro}") - ./test.xsh -b @(distro) -p qemu.x86_64 --headless - rm -r serial-output-qemu* output_qemu* *.box - for x in range(10): - print("***" * 20) - - -if __name__ == '__main__': - main() diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 02afe00..0000000 --- a/tox.ini +++ /dev/null @@ -1,27 +0,0 @@ -[tox] -skip_dist = true -minversion = 3.2 -envlist = lint_all -requires = tox-ansible>=1.5 - -[ansible] -molecule_config_files = {toxinidir}/ansible/molecule.yml -ansible_lint_config = {toxinidir}/ansible/ansible-lint.yml -yamllint_config = {toxinidir}/ansible/yamllint.yml - -[testenv] -parallel_show_output = true -usedevelop = false -skip_install = true -passenv = - TERM - SHELL - XDG_RUNTIME_DIR - ANSIBLE_COLLECTIONS_PATH -deps = - molecule - -[flake8] -exclude = - http/fedora, - .tox