File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 31
31
run : pip install pdm && pdm install -g
32
32
33
33
- name : Execute the integrationtests (http1.1)
34
- run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/integrationtest
34
+ run : 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 : PYTHONPATH=$PWD/src python3 -m unittest discover tests/integrationtest
48
+ run : 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 24
24
cache : ' pip'
25
25
26
26
- name : Install the requirements
27
- run : pip install pdm && pdm install -g && pdm add -g setuptools~=65.5.1 mkdocs mkdocs-material build
27
+ run : pip install pdm && pdm install -g --no-self && pdm add -g setuptools~=65.5.1 mkdocs mkdocs-material build
28
28
29
29
- name : Prepare the PyPi documentation
30
30
run : python3 .github/workflows/scripts/adjust-the-readme-file.py
Original file line number Diff line number Diff line change 23
23
cache : ' pip'
24
24
25
25
- name : Install the requirements
26
- run : pip install pdm && pdm install -d -g
26
+ run : pip install pdm && pdm install --no-self -d
27
27
28
28
- name : Execute the unittests
29
29
run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/unittests
73
73
cache : ' pip'
74
74
75
75
- name : Install the requirements
76
- run : pip install pdm && pdm install -d -g && pdm add -g pytest-cov coverage-badge
76
+ run : pip install pdm && pdm install --no-self - d -g && pdm add -g pytest-cov coverage-badge
77
77
78
78
- name : Generate the coverage report
79
79
run : PYTHONPATH=$PWD/src pytest --junitxml=pytest.xml --cov=. tests/unittests | tee pytest-coverage.txt
You can’t perform that action at this time.
0 commit comments