Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ jobs:
uses: py-actions/py-dependency-install@v4
with:
path: requirements.txt
- name: Fetch master branch
# Needed for aiosmtpd.qa.test_0packaging.TestVersion.test_ge_master,
# it runs a "git show" command which will fail if the master branch
# does not exist locally
run: git fetch origin master:master
- name: Run unittests
run: pytest
env:
Expand Down
Loading