summaryrefslogtreecommitdiff
path: root/tests/README.txt
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-12-08 06:48:58 -0800
committerGitHub <noreply@github.com>2020-12-08 06:48:58 -0800
commitef4998692c753a635eba58975ae80834dfc14538 (patch)
treef959bde2fae72c30e129520023b698a9220bbdf2 /tests/README.txt
parentf655908d75010db66ec88e4023ed0982b8b00f94 (diff)
downloadpycparser-ef4998692c753a635eba58975ae80834dfc14538.tar.gz
Simplify test execution (#400)
Use the stdlib standard entry point for running tests through the command: python -m unittest discover Docs: https://docs.python.org/3/library/unittest.html#unittest-test-discovery This automatically looks for files with the test_ prefix and runs them as tests. This removes the need for the custom test entry point script, all_tests.py.
Diffstat (limited to 'tests/README.txt')
-rw-r--r--tests/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/README.txt b/tests/README.txt
index 5196024..c540b7b 100644
--- a/tests/README.txt
+++ b/tests/README.txt
@@ -1 +1 @@
-Run 'python tests/all_tests.py' from the root pycparser directory
+Run 'python -m unittest discover' from the root pycparser directory