Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,16 @@ jobs:
- name: Test with tox
run: |
pyenv="py$(echo "${{ matrix.python-version }}" | tr -d '.')"
tox -e ${pyenv}-test,${pyenv}-rapidjson,flake8,lint
tox -e ${pyenv}-test,flake8,lint
tox -e ${pyenv}-rapidjson -- --cov-append
- name: Check code format with black
if: matrix.python-version == 3.9
run: tox -e black
- name: Check package
if: matrix.python-version == 3.9
run: tox -e check_package
- name: Upload to coverage
uses: codecov/[email protected]
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@master
if: >-
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
addopts = -v --junit-xml=test-report.xml
--doctest-modules
--cov=riotctrl --cov-branch
--cov-report=term --cov-report=xml --cov-report=html
--cov-report=term-missing --cov-report=xml
testpaths = riotctrl
markers =
rapidjson
Expand Down