Skip to content

Commit

Permalink
remove poetry lockfile to better project testing (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs authored Mar 19, 2024
1 parent 41c7953 commit 0e4cf6b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
# remove poetry.lock file for scheduled tests
# to help simulate possible upstream issues
- name: Remove poetry.lock for scheduled tests
if: github.event_name == 'schedule'
run: |
rm poetry.lock
- name: Setup for poetry
uses: ./.github/actions/setup-poetry
- name: Install environment
Expand Down

0 comments on commit 0e4cf6b

Please sign in to comment.