Skip to content

Commit a04260d

Browse files
committed
WIP
1 parent 6c14b9b commit a04260d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/integrationtest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
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 }}
@@ -45,7 +45,7 @@ jobs:
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 }}

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
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

.github/workflows/pull-request-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
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
@@ -73,7 +73,7 @@ jobs:
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

0 commit comments

Comments
 (0)