diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-01-13 22:01:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-13 22:01:53 +0100 |
| commit | a1ffa82a9812c770bfc3aa3a474eb086c787830a (patch) | |
| tree | 8e971a3ef43e64b52647c8fce39ea3a8981a168c | |
| parent | 7f12d5bf72e9a236c71845e932c37352c5df642a (diff) | |
| parent | a209c04bc3437f7cbb8caf1e11ab1833cd0aae29 (diff) | |
| download | miasm-a1ffa82a9812c770bfc3aa3a474eb086c787830a.tar.gz miasm-a1ffa82a9812c770bfc3aa3a474eb086c787830a.zip | |
Merge pull request #932 from stephengroat/patch-3
parallel tests
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 60c4defd..8253cb24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,17 @@ addons: - llvm-6.0 - llvm-6.0-dev - g++-5 -env: CXX=g++-5 LLVM_CONFIG=llvm-config-6.0 +env: + global: CXX=g++-5 LLVM_CONFIG=llvm-config-6.0 + matrix: + - MIASM_TEST_TAG=regression + - MIASM_TEST_TAG=example + - MIASM_TEST_TAG=long + - MIASM_TEST_TAG=llvm + - MIASM_TEST_TAG=gcc + - MIASM_TEST_TAG=z3 + - MIASM_TEST_TAG=qemu + - MIASM_TEST_TAG=cparser before_script: - pip install -r optional_requirements.txt # codespell @@ -18,4 +28,4 @@ before_script: # install - python setup.py build build_ext - python setup.py install -script: cd test && python test_all.py && git ls-files -o --exclude-standard +script: cd test && python test_all.py -o=$MIASM_TEST_TAG && git ls-files -o --exclude-standard |