We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08aa2f7 commit a7ad782Copy full SHA for a7ad782
.github/workflows/python-pull-request.yml
@@ -20,8 +20,6 @@ jobs:
20
21
steps:
22
- uses: actions/checkout@v3
23
- with:
24
- fetch-tags: 'true'
25
26
- name: Set up Python ${{ matrix.python-version }}
27
uses: actions/setup-python@v4
@@ -42,7 +40,7 @@ jobs:
42
40
echo "models_changed=$(echo "$CHANGED_FILES" | grep -q '^models/.*\.py$' && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT
43
41
44
- 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
+ run: git fetch origin 'refs/tags/*:refs/tags/*' && git tag --list && pip freeze && pip install -e ./graphs/[tests] -e ./training/[tests] -e ./models/[tests]
46
47
- name: Run integration tests
48
run: pytest tests
0 commit comments