Skip to content

Commit cdcd709

Browse files
committed
WIP
1 parent 9f7d5c4 commit cdcd709

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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 -g && pip list
31+
run: pip install pdm && pdm install && pdm list
3232

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

.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 --no-self -d -g
26+
run: pip install pdm && pdm install --no-self -d && pdm list && ls -la
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 --no-self -d -g && pdm add -g pytest-cov coverage-badge
76+
run: pip install pdm && pdm install --no-self -d && pdm add 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 -g pydoc-markdown==4.6.3 pyyaml==5.3.1 mkdocs mkdocs-material
136+
run: pip install pdm && pdm add 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

0 commit comments

Comments
 (0)