Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrong test file name in README.md #469

Merged
merged 1 commit into from
Mar 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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
```
```