Skip to content

Commit

Permalink
changing working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-cassese committed Apr 15, 2024
1 parent 61f466b commit 9ccb8a2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
run: tox
env:
PLATFORM: ${{ matrix.platform }}
working-directory: ${{ github.workspace }}
- name: Coveralls GitHub Action
if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11'
uses: coverallsapp/github-action@v2.2.3
with:
file: "**coverage.xml"
file: ./coverage.xml

14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ deps = coverage
skip_install = true
commands = coverage erase

; [testenv:report]
; deps = coverage
; skip_install = true
; commands =
; coverage report
; ; coverage html -o {toxinidir}/coverage.xml
; coverage xml -o {toxinidir}/coverage.xml
[testenv:report]
deps = coverage
skip_install = true
commands =
coverage report
; coverage html -o {toxinidir}/coverage.xml
coverage xml #-o {toxinidir}/coverage.xml

[coverage:paths]
source = src/tox
Expand Down

0 comments on commit 9ccb8a2

Please sign in to comment.