summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2020-07-07 15:57:02 -0400
committeranselor <anselor@gmail.com>2020-07-11 17:30:40 -0400
commit601a8e271020ca1b0918deabf70ad0778ded7d4a (patch)
tree48f2134a71a2478c00eb9df33e69b30c0ae39002 /noxfile.py
parent28e43bf24f8a5bc0b2e896938e76e17524d12ed3 (diff)
downloadcmd2-git-601a8e271020ca1b0918deabf70ad0778ded7d4a.tar.gz
external test plugin tests and coverage should now run
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/noxfile.py b/noxfile.py
index 483369f9..a9f3230c 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -15,4 +15,8 @@ def docs(session):
def tests(session):
session.install('invoke', './[test]')
session.run('invoke', 'pytest', '--junit', '--no-pty')
+
+ session.chdir('./plugins/ext_test')
+ session.install('.[test]')
+ session.run('invoke', 'pytest', '--junit', '--no-pty', '--append-cov')
session.run('codecov')