forked from llnl/maestrowf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (26 loc) · 647 Bytes
/
tox.ini
File metadata and controls
31 lines (26 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Tox (https://testrun.org/tox/latest/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
isolated_build = true
envlist = flake, py{35,36,37,38}
skip_missing_interpreters=True
[travis]
python =
3.6: py36
3.7: py37
3.8: py38
[testenv]
deps:
pytest
pytest-cov
commands:
pytest {posargs} --junitxml=report.xml --cov-append
coverage xml
maestro run -fg -y -s 10 ./samples/lulesh/lulesh_sample1_unix.yaml -o ./testing/lulesh
[testenv:flake]
deps:
flake8
commands:
flake8