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 /tasks.py | |
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 'tasks.py')
-rw-r--r-- | tasks.py | 23 |
1 files changed, 1 insertions, 22 deletions
@@ -46,7 +46,7 @@ namespace.add_collection(namespace_clean, 'clean') ##### # -# pytest, tox, nox, pylint, and codecov +# pytest, nox, pylint, and codecov # ##### @@ -115,27 +115,6 @@ namespace_clean.add_task(mypy_clean, 'mypy') @invoke.task -def tox(context): - """Run unit and integration tests on multiple python versions using tox""" - with context.cd(TASK_ROOT_STR): - context.run("tox") - - -namespace.add_task(tox) - - -@invoke.task -def tox_clean(context): - """Remove tox virtualenvs and logs""" - # pylint: disable=unused-argument - with context.cd(TASK_ROOT_STR): - rmrf('.tox') - - -namespace_clean.add_task(tox_clean, 'tox') - - -@invoke.task def nox_clean(context): """Remove nox virtualenvs and logs""" # pylint: disable=unused-argument |