Skip to content

Commit

Permalink
YAC-29-codeconv
Browse files Browse the repository at this point in the history
  • Loading branch information
mfl15 committed Oct 19, 2023
1 parent edc6ba5 commit f7d301c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/runTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
run: tox -e py
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: yacht_env
Expand Down
11 changes: 11 additions & 0 deletions Tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[tox]
envlist = py39
skipsdist = True

[testenv]
deps =
pytest
pytest-cov
commands = pytest --cov=my_project --cov-report=xml --cov-config=tox.ini --cov-branch

[coverage:run]

0 comments on commit f7d301c

Please sign in to comment.