Skip to content

Commit

Permalink
Fix broken build (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
a5kin committed Feb 24, 2019
1 parent 7f2b5d6 commit 50f50ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
File renamed without changes.
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ envlist =

[testenv]
commands_pre =
python3 title.py "Environment: {envname}"
python3 tests/title.py "Environment: {envname}"
commands =
python -m pip -q install numpy wheel
python -m pip -q install pycuda
Expand All @@ -18,7 +18,7 @@ deps =
[testenv:coverage]
basepython = python3.6
commands_pre =
python3 title.py "Coverage"
python3 tests/title.py "Coverage"
commands =
python -m pip -q install numpy wheel
python -m pip -q install pycuda
Expand All @@ -32,7 +32,7 @@ setenv =

[testenv:docs]
commands_pre =
python3 title.py "Documentation"
python3 tests/title.py "Documentation"
basepython = python3.6
whitelist_externals = make
commands =
Expand All @@ -45,7 +45,7 @@ deps =

[testenv:flake8]
commands_pre =
python3 title.py "Codestyle Check"
python3 tests/title.py "Codestyle Check"
basepython = python3.6
deps =
flake8
Expand All @@ -55,7 +55,7 @@ commands =

[testenv:pylint]
commands_pre =
python3 title.py "Static Analysis"
python3 tests/title.py "Static Analysis"
basepython = python3.6
deps =
pylint
Expand All @@ -64,7 +64,7 @@ commands =

[testenv:benchmark]
commands_pre =
python3 title.py "Benchmark"
python3 tests/title.py "Benchmark"
basepython = python3.6
commands =
python -m pip -q install numpy wheel
Expand All @@ -73,7 +73,7 @@ commands =

[testenv:sanity]
commands_pre =
python3 title.py "Sanity Checks"
python3 tests/title.py "Sanity Checks"
basepython = python3.6
commands =
check-manifest --ignore tox*.ini,tests*,data*
Expand Down

0 comments on commit 50f50ce

Please sign in to comment.