Skip to content

Commit

Permalink
OPS: Stop using tox to test
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Oct 15, 2024
1 parent 34c1466 commit 6831a80
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 135 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,14 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install tox
run: pip install tox
- name: Install package
run: poetry install -v

- name: Run tests
run: tox
run: |
poetry run coverage run --source octue -m unittest discover
poetry run coverage report --show-missing
poetry run coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand Down
119 changes: 1 addition & 118 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jsonschema = "^4"
python-dotenv = ">=0,<=2"

[tool.poetry.group.dev.dependencies]
tox = ">=3"
flake8 = "3.8.3"
black = "19.10.b0"
pre-commit = ">=2.6.0"
Expand Down
13 changes: 0 additions & 13 deletions tox.ini

This file was deleted.

0 comments on commit 6831a80

Please sign in to comment.