File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -97,15 +97,17 @@ jobs:
9797 - name : Install Python 3.9 and Git from AppStream
9898 run : yum install -y python39-devel python39-pip python39-pip-wheel python39 git
9999 - uses : actions/checkout@v4
100- - name : Install Testing Requirements
101- run : python3.9 -m pip install nox
102- - name : Run Tests
103- run : python3.9 -m nox -e tests
104- # - name: Upload to codecov
105- # uses: codecov/codecov-action@v5
106- # with:
107- # token: ${{ secrets.CODECOV_TOKEN }}
108- # fail_ci_if_error: true
100+ - name : Test
101+ run : |
102+ python3.9 -m venv .venv
103+ . .venv/bin/activate
104+ pip install --upgrade pip nox
105+ nox -e tests
106+ - name : Upload to codecov
107+ uses : codecov/codecov-action@v5
108+ with :
109+ token : ${{ secrets.CODECOV_TOKEN }}
110+ fail_ci_if_error : true
109111
110112 rhel9-system-python :
111113 name : rhel9-system-python
You can’t perform that action at this time.
0 commit comments