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

Update test-running instructions #697

Merged
merged 1 commit into from
Nov 21, 2024
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
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,13 @@ python3.10 generate_secrets.py
```

## Running the Unit Tests
To run the tests (takes about 15 minutes on my machine):
To run the tests (takes 15-60 minutes):
```
./manage.py -v 2 test
./manage.py test
```
To exclude the slowest test cases from the run:
```
./manage.py test --exclude-tag slow
```

## Updating schema.yml and Rendering the Schema
Expand Down
Loading