Skip to content

Commit 46241fd

Browse files
committed
WIP
1 parent 01817f8 commit 46241fd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/integrationtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: 'pip'
2929

3030
- name: Install the requirements
31-
run: pip install pdm && pdm install
31+
run: pip install pdm && pdm install -g
3232

3333
- name: Execute the integrationtests (http1.1)
3434
run: PYTHONPATH=$PWD/src python3 -m unittest discover tests/integrationtest

.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 && pdm add setuptools~=65.5.1 mkdocs mkdocs-material build
27+
run: pip install pdm && pdm install -g && 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: 3 additions & 3 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
26+
run: pip install pdm && pdm install -d -g
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 && pdm add pytest-cov coverage-badge
76+
run: pip install pdm && pdm install -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
@@ -133,7 +133,7 @@ jobs:
133133
cache: 'pip'
134134

135135
- name: Install the requirements
136-
run: pip install pdm && pdm add pydoc-markdown==4.6.3 pyyaml==5.3.1 mkdocs mkdocs-material
136+
run: pip install pdm && pdm add -g pydoc-markdown==4.6.3 pyyaml==5.3.1 mkdocs mkdocs-material
137137

138138
- name: Generate documentation
139139
run: pydoc-markdown --render-toc && rm -rf docs/content && mv build/docs/* docs

.github/workflows/scripts/adjust-the-readme-file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
long_description: str = fh.read()
44

55
with open("README.md", "w", encoding="utf-8") as fh:
6-
fh.write(long_description.replace(coverage_string, ""))
6+
fh.write(long_description.replace(coverage_string, ""))

0 commit comments

Comments
 (0)