File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
run : pip install pdm && pdm install
32
32
33
33
- name : Execute the integrationtests (http1.1)
34
- run : python3 -m unittest discover tests/integrationtest
34
+ run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/integrationtest
35
35
env :
36
36
GRAFANA_HOST : ${{ secrets.GRAFANA_HOST }}
37
37
GRAFANA_TOKEN : ${{ secrets.GRAFANA_TOKEN }}
45
45
run : sleep 20
46
46
47
47
- name : Execute the integrationtests (http2)
48
- run : python3 -m unittest discover tests/integrationtest
48
+ run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/integrationtest
49
49
env :
50
50
GRAFANA_HOST : ${{ secrets.GRAFANA_HOST }}
51
51
GRAFANA_TOKEN : ${{ secrets.GRAFANA_TOKEN }}
Original file line number Diff line number Diff line change 26
26
run : pip install pdm && pdm install -d
27
27
28
28
- name : Execute the unittests
29
- run : python3 -m unittest discover tests/unittests
29
+ run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/unittests
30
30
31
31
pr-lint :
32
32
runs-on : ubuntu-latest
76
76
run : pip install pdm && pdm install -d && pdm add pytest-cov coverage-badge
77
77
78
78
- name : Generate the coverage report
79
- run : export PYTHONPATH=$PWD && pytest --junitxml=pytest.xml --cov=. tests/unittests | tee pytest-coverage.txt
79
+ run : PYTHONPATH=$PWD/src pytest --junitxml=pytest.xml --cov=. tests/unittests | tee pytest-coverage.txt
80
80
81
81
- name : Execute the coverage checks
82
82
You can’t perform that action at this time.
0 commit comments