Skip to content

Commit a7ad782

Browse files
committed
try
1 parent 08aa2f7 commit a7ad782

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/python-pull-request.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v3
23-
with:
24-
fetch-tags: 'true'
2523

2624
- name: Set up Python ${{ matrix.python-version }}
2725
uses: actions/setup-python@v4
@@ -42,7 +40,7 @@ jobs:
4240
echo "models_changed=$(echo "$CHANGED_FILES" | grep -q '^models/.*\.py$' && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT
4341
4442
- name: Install core packages
45-
run: pip install -e ./graphs/[tests]==0.0.post1 -e ./training/[tests]==0.0.post1 -e ./models/[tests]==0.0.post1
43+
run: git fetch origin 'refs/tags/*:refs/tags/*' && git tag --list && pip freeze && pip install -e ./graphs/[tests] -e ./training/[tests] -e ./models/[tests]
4644

4745
- name: Run integration tests
4846
run: pytest tests

0 commit comments

Comments
 (0)