summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAshley Whetter <AWhetter@users.noreply.github.com>2019-10-15 01:49:26 -0700
committerClaudiu Popa <pcmanticore@gmail.com>2019-10-15 10:49:26 +0200
commit2f288598de485c6af25788fc917139b48c31c474 (patch)
tree3b52b2994c90018a2db2854adca0928c4bfe1162 /tox.ini
parent73babe3d536ffc4da94e59c705eb6a8c3e5822ef (diff)
downloadastroid-git-2f288598de485c6af25788fc917139b48c31c474.tar.gz
Moved tests out of package directory (#704)
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index a1591b45..e848c225 100644
--- a/tox.ini
+++ b/tox.ini
@@ -36,12 +36,12 @@ commands =
; installed astroid package
; This is important for tests' test data which create files
; inside the package
- python -Wi {envsitepackagesdir}/coverage run -m pytest --pyargs astroid/tests {posargs:}
+ python -Wi {envsitepackagesdir}/coverage run -m pytest --pyargs {posargs:tests}
[testenv:formatting]
basepython = python3
deps = black==18.6b4
-commands = black --check --exclude "tests/testdata" astroid
+commands = black --check --exclude "tests/testdata" astroid tests
changedir = {toxinidir}
[testenv:coveralls]