Skip to content

Commit 31810e5

Browse files
authored
Fix testing now that version is set by CI
1 parent 4dbf8fb commit 31810e5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
- name: Install pytest
2525
run: pip install pytest
2626
- name: Install locally
27-
run: pip install .
27+
run: |
28+
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
29+
sed -i -e "s/0.0.0-auto.0/1.2.3-testrev/" $file;
30+
done;
31+
pip install .
2832
- name: Run tests
2933
run: pytest

0 commit comments

Comments
 (0)