diff options
| author | Eric Lin <anselor@gmail.com> | 2020-08-04 14:08:37 -0400 |
|---|---|---|
| committer | anselor <anselor@gmail.com> | 2020-08-04 15:23:44 -0400 |
| commit | c983abaa881a3ac6110a90194def660489b2d5cc (patch) | |
| tree | 62afd538178f18a8f66727fa5e4af60e074a8485 /plugins/ext_test | |
| parent | 4c0bdad9acd578536436246023ae884755089040 (diff) | |
| download | cmd2-git-c983abaa881a3ac6110a90194def660489b2d5cc.tar.gz | |
Removed remaining usages and examples with tox. Updated references to tox to reference to nox instead.
Diffstat (limited to 'plugins/ext_test')
| -rw-r--r-- | plugins/ext_test/noxfile.py | 7 | ||||
| -rw-r--r-- | plugins/ext_test/tasks.py | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/ext_test/noxfile.py b/plugins/ext_test/noxfile.py new file mode 100644 index 00000000..85411106 --- /dev/null +++ b/plugins/ext_test/noxfile.py @@ -0,0 +1,7 @@ +import nox + + +@nox.session(python=['3.5', '3.6', '3.7', '3.8', '3.9']) +def tests(session): + session.install('invoke', './[test]') + session.run('invoke', 'pytest', '--junit', '--no-pty') diff --git a/plugins/ext_test/tasks.py b/plugins/ext_test/tasks.py index ffa55e61..f23faa69 100644 --- a/plugins/ext_test/tasks.py +++ b/plugins/ext_test/tasks.py @@ -41,7 +41,7 @@ namespace.add_collection(namespace_clean, 'clean') ##### # -# pytest, tox, pylint, and codecov +# pytest, pylint, and codecov # ##### |
