diff options
author | Eric Lin <anselor@gmail.com> | 2020-07-10 11:07:24 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-07-11 17:30:40 -0400 |
commit | 4f631bec32592e9278860fd234ebe84facfec3c1 (patch) | |
tree | 72f21bbb9ac6c0b142c6e1fde31b286925588c06 /noxfile.py | |
parent | 601a8e271020ca1b0918deabf70ad0778ded7d4a (diff) | |
download | cmd2-git-4f631bec32592e9278860fd234ebe84facfec3c1.tar.gz |
Minor cleanup. Removed some experiments that weren't supposed to be included
Diffstat (limited to 'noxfile.py')
-rw-r--r-- | noxfile.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -16,7 +16,11 @@ def tests(session): session.install('invoke', './[test]') session.run('invoke', 'pytest', '--junit', '--no-pty') + # cd into test directory to run other unit test session.chdir('./plugins/ext_test') session.install('.[test]') session.run('invoke', 'pytest', '--junit', '--no-pty', '--append-cov') + + # return to top directory to submit coverage + session.chdir('../..') session.run('codecov') |