From b9ed0bd5ffa91fb17e0135516a3fdfa0d394d7e8 Mon Sep 17 00:00:00 2001 From: utkarsh <44971195+utkarsh261@users.noreply.github.com> Date: Tue, 10 Mar 2020 19:13:02 +0530 Subject: [PATCH] wrong test file name in README.md small fix. test/test_checker.py -> test/test_checkers.py at two places in the doc. --- test/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/README.md b/test/README.md index aa49246907..ee41230913 100644 --- a/test/README.md +++ b/test/README.md @@ -10,7 +10,7 @@ python setup.py test To run scanner and checker tests ```console -pytest test/test_scanner.py test/test_checker.py +pytest test/test_scanner.py test/test_checkers.py ``` By default, some longer-running tests are turned off. If you want to enable them, you can set the environment variable LONG_TESTS to 1. You can do this just for a single command line as follows: @@ -21,7 +21,7 @@ LONG_TESTS=1 python setup.py test For scanner tests ```console -LONG_TESTS=1 pytest test/test_scanner.py test/test_checker.py +LONG_TESTS=1 pytest test/test_scanner.py test/test_checkers.py ``` ## Running a single test @@ -210,4 +210,4 @@ You can also use all the pytest functionality to run groups of tests. For examp ```console pytest -v test/test_checkers.py -k python -``` \ No newline at end of file +```