Skip to content

Commit e9da23b

Browse files
committed
CI: trying a different way to activate the PDM venv
1 parent f61abb2 commit e9da23b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Generate coverage report
3434
run: |
3535
pip install coverage
36-
$(pdm venv activate)
36+
. .venv/bin/activate
3737
coverage run --source=. -m runtests
3838
coverage xml
3939
- name: Upload coverage to Codecov

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
flake8 . --config=flake8rc --count --exit-zero --max-complexity=100 --max-line-length=127 --statistics
4141
- name: Test with unpythonic.test.fixtures
4242
run: |
43-
$(pdm venv activate)
43+
. .venv/bin/activate
4444
python runtests.py

0 commit comments

Comments
 (0)