Skip to content

Commit 1459630

Browse files
authored
Merge pull request #124 from binary-butterfly/fix-release-pipeline
Fix release pipeline by installing all testing requirements
2 parents 467560c + 8bef8ea commit 1459630

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,8 @@ jobs:
5353
name: dist_packages
5454
path: dist/
5555

56-
- name: Install test dependencies
57-
run: pip install pytest pytest-cov
58-
59-
- name: Install built package
60-
run: pip install dist/validataclass-*.whl
56+
- name: Install built package with testing dependencies
57+
run: pip install "$(find dist/ -name 'validataclass-*.whl')[testing]"
6158

6259
- name: Run unit tests
6360
run: python -m pytest

0 commit comments

Comments
 (0)