summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorJason DeTiberus <detiber@gmail.com>2017-02-20 12:36:23 -0500
committerGitHub <noreply@github.com>2017-02-20 12:36:23 -0500
commit3d80a37685da4948aad62419e49335cb5a140826 (patch)
tree2dabc7c9bee247b9e85a10ed4178765a54f7fe6c /tox.ini
parentbc26f6b0fc90d4501161e16dcf68130d03ca06a7 (diff)
parentdf1fd5b8f97c69eef10c02f317b62755c4519d92 (diff)
downloadopenshift-3d80a37685da4948aad62419e49335cb5a140826.tar.gz
openshift-3d80a37685da4948aad62419e49335cb5a140826.tar.bz2
openshift-3d80a37685da4948aad62419e49335cb5a140826.tar.xz
openshift-3d80a37685da4948aad62419e49335cb5a140826.zip
Merge pull request #3419 from rhcarvalho/pytest
Migrate from nose to pytest
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 4 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 4d3594023..13c87f5c4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,8 +12,10 @@ deps =
ansible22: ansible~=2.2
commands =
- flake8: flake8
+ unit: pytest {posargs}
+ flake8: flake8 {posargs}
pylint: python setup.py lint
yamllint: python setup.py yamllint
- unit: nosetests
generate_validation: python setup.py generate_validation
+
+