forked from move-coop/parsons
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (40 loc) · 1.15 KB
/
tests-mac.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
49
50
name: tests for mac
# test mac on single python version as mac tests use 10x minutes/storage
on:
pull_request:
branches: ["main", "major-release"]
push:
branches: ["main", "major-release"]
env:
TESTING: 1
jobs:
build:
strategy:
matrix:
limited-dependencies: ['','TRUE']
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: actions/cache@v3
with:
path: ~/Library/Caches/pip
key: mac-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
mac-pip-
- name: Install dependencies
env:
PARSONS_LIMITED_DEPENDENCIES: ${{ matrix.limited-dependencies }}
run: |
python -m pip install .[all]
python -m pip install -r requirements-dev.txt
- name: Run tests
run: TESTING=1 pytest -rf test/
- name: check linting
run: |
# E203 and W503 don't work well with black
flake8 parsons/ test/ useful_resources/ --extend-ignore=E203,W503
black --check parsons/ test/ useful_resources/