-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtests.sh
More file actions
executable file
·17 lines (16 loc) · 922 Bytes
/
Copy pathtests.sh
File metadata and controls
executable file
·17 lines (16 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
# Pytest local run with coverage and a report exported to HTML
# See; https://coverage.readthedocs.io/en/6.3.2/
coverage run -m pytest --durations=0 -vv -x --log-level=debug
coverage report
coverage html
# To test individual test files and check test speeds for pruning see and
# uncomment the following.
#pytest --durations=0 -vv -x --log-level=debug src/test_blockchain.py
#pytest --durations=0 -vv -x --log-level=debug src/test_blockchain_delegate.py
#pytest --durations=0 -vv -x --log-level=debug src/test_blockchain_functions.py
#pytest --durations=0 -vv -x --log-level=debug src/test_blockchain_speaker.py
#pytest --durations=0 -vv -x --log-level=debug src/test_demo_functions.py
#pytest --durations=0 -vv -x --log-level=debug src/test_file.py
#pytest --durations=0 -vv -x --log-level=debug src/test_net_propagation.py
#pytest --durations=0 -vv -x --log-level=debug src/test_strings_functions.py