Added testing
This commit is contained in:
parent
821251b77c
commit
56c1d5427a
8 changed files with 151 additions and 8 deletions
.forgejo/workflows
|
@ -32,3 +32,17 @@ jobs:
|
|||
run: |
|
||||
mypy --version
|
||||
mypy .
|
||||
|
||||
tests:
|
||||
runs-on: docker
|
||||
container: forgejo.neshweb.net/ci-docker-images/python-neshweb:3.11
|
||||
steps:
|
||||
- name: Checkout source code
|
||||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- name: Install packages
|
||||
run: |
|
||||
pip install -e .[testing] --disable-pip-version-check --no-cache-dir -q
|
||||
python -m pip list --format=columns --disable-pip-version-check
|
||||
- name: Run pytest
|
||||
run: |
|
||||
pytest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue