-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (37 loc) · 1.28 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Run Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup venv and pip
run: |
python3 -m ensurepip
pip -V
python3 -m pip -V
python3 -m venv venv
- name: Setup environment (Unix)
if: runner.os != 'Windows'
run: source venv/bin/activate
- name: Setup environment (Windows)
if: runner.os == 'Windows'
run: .\\venv\\Scripts\\activate.bat
- name: Install the package
run: pip install -e ".[testing]"
- name: Run pytest
run: pytest tests -vvv
- name: Run mypy
run: mypy src/isisdl/backend/crud.py src/isisdl/backend/models.py src/isisdl/api src/isisdl/db_conf.py src/isisdl/__main__.py src/isisdl/settings.py src/isisdl/utils.py tests
- name: Run flake8
run: flake8 src/isisdl/backend/crud.py src/isisdl/backend/models.py src/isisdl/api src/isisdl/db_conf.py src/isisdl/__main__.py src/isisdl/settings.py src/isisdl/utils.py tests