-
Notifications
You must be signed in to change notification settings - Fork 22
52 lines (42 loc) · 1.43 KB
/
mr_ci.yml
File metadata and controls
52 lines (42 loc) · 1.43 KB
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
49
50
51
52
---
name: Units Tests
on:
# Manual trigger only
workflow_dispatch:
# Cancel existing tests on the same PR if a new commit is added to a pull request
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
unit-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.9, 3.12]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: |
python -m ensurepip
python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install ".[dev]"
python -m pip install pytest-cov
- name: Quality Assurance
run: |
python -m flake8 ./mapreader/ --count --select=E9,F63,F7,F82, --ignore=F821 --show-source --statistics
python -m black --diff ./mapreader/
python -m flake8 ./tests/ --count --select=E9,F63,F7,F82, --ignore=F821 --show-source --statistics
python -m black --diff ./tests/
- name: Test with pytest
run: |
python -m pytest ./tests --ignore=tests/test_text_spotting/