We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b62bf9 commit 80b201dCopy full SHA for 80b201d
lambdas/shared/Makefile
@@ -1,5 +1,10 @@
1
+TEST_ENV := @PYTHONPATH=src:tests:src/common
2
+
3
test:
- @PYTHONPATH=src:../ python -m unittest discover -s tests -p "test_*.py" -v
4
+ $(TEST_ENV) python -m unittest discover -s tests -p "test_*.py" -v
5
6
+testv:
7
+ $(TEST_ENV) python -m unittest discover -s tests/test_common/validator -p "test_*.py" -v
8
9
test-list:
10
@PYTHONPATH=src:tests python -m unittest discover -s tests -p "test_*.py" --verbose | grep test_
0 commit comments