Skip to content

Commit

Permalink
Attempt to resolve socket permissions issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Monarda committed Sep 12, 2024
1 parent e0200b7 commit 9c06ad2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ jobs:
python-version: ["3.11", "3.12"]
runs-on: ${{ matrix.os }}
continue-on-error: true
container:
image: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[test]
run: |
pip install .[test]
sudo pip install .[test]
- name: Run tests
run: |
python -m coverage run --source=. -m unittest discover tests/
sudo python -m coverage run --source=. -m unittest discover tests/
- name: Gather coverage statistics
run: |
coverage report -m
Expand Down

0 comments on commit 9c06ad2

Please sign in to comment.