File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,19 @@ jobs:
22
22
- name : Run test cases for coverage collection
23
23
run : |
24
24
pytest -vrP --cov=websocket websocket/tests --cov-config=.coveragerc
25
- coverage report
25
+ env :
26
+ TEST_WITH_INTERNET : 1
27
+ - name : Run test_abnf.py without numpy and append to coverage
28
+ run : |
29
+ pip uninstall numpy
30
+ pytest -vrP --cov=websocket websocket/tests/test_abnf.py --cov-config=.coveragerc --cov-append
26
31
env :
27
32
TEST_WITH_INTERNET : 1
28
33
- name : Run with extra environment variable and create report
29
34
run : |
30
35
python -c "import ssl; print(ssl.get_default_verify_paths().capath)"
31
36
pytest -vrP --cov=websocket websocket/tests --cov-config=.coveragerc --cov-append -k "testSSLopt"
32
37
coverage xml
33
- coverage report
34
38
env :
35
39
TEST_WITH_INTERNET : 1
36
40
WEBSOCKET_CLIENT_CA_BUNDLE : " /usr/lib/ssl/certs"
You can’t perform that action at this time.
0 commit comments