Skip to content

Commit

Permalink
git fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Oct 4, 2024
1 parent 4094b28 commit 102d182
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/fedora-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
tox_test:
name: Tox test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Tox tests
Expand All @@ -38,11 +38,11 @@ jobs:
matrix:
tox_env:
# sync with /tox.ini
- py36
- py37
#- py36
#- py37
- py311
- py312
- py313
#- py312
#- py313

# Use GitHub's Linux Docker host
runs-on: ubuntu-latest
1 change: 1 addition & 0 deletions test/unit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def fix_tox_env():
gconf = ['git', 'config', '--global']
subprocess.call(gconf + ['user.email', '[email protected]'], cwd="/tmp")
subprocess.call(gconf + ['user.name', 'Your Name'], cwd="/tmp")
subprocess.call(["git", "fetch", "origin"])


fix_tox_env()
Expand Down

0 comments on commit 102d182

Please sign in to comment.