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 3131 run : pip install pdm && pdm install -g
3232
3333 - 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
3535 env :
3636 GRAFANA_HOST : ${{ secrets.GRAFANA_HOST }}
3737 GRAFANA_TOKEN : ${{ secrets.GRAFANA_TOKEN }}
4545 run : sleep 20
4646
4747 - name : Execute the integrationtests (http2)
48- run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/integrationtest
48+ run : python3 -m unittest discover tests/integrationtest
4949 env :
5050 GRAFANA_HOST : ${{ secrets.GRAFANA_HOST }}
5151 GRAFANA_TOKEN : ${{ secrets.GRAFANA_TOKEN }}
Original file line number Diff line number Diff line change 2424 cache : ' pip'
2525
2626 - 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
2828
2929 - name : Prepare the PyPi documentation
3030 run : python3 .github/workflows/scripts/adjust-the-readme-file.py
Original file line number Diff line number Diff line change 2323 cache : ' pip'
2424
2525 - name : Install the requirements
26- run : pip install pdm && pdm install -d -g
26+ run : pip install pdm && pdm install --no-self -d
2727
2828 - name : Execute the unittests
2929 run : PYTHONPATH=$PWD/src python3 -m unittest discover tests/unittests
7373 cache : ' pip'
7474
7575 - 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
7777
7878 - name : Generate the coverage report
7979 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