Skip to content

Commit f365b79

Browse files
committed
???
1 parent bb5ee64 commit f365b79

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
name: Test
1+
name: Test (cudmore)
22

33
on:
44
pull_request:
55
branches: [main]
66
push:
7-
branches: [main]
87

98
permissions:
109
contents: read
@@ -15,7 +14,7 @@ jobs:
1514
strategy:
1615
matrix:
1716
platform: [ubuntu-latest, windows-latest, macos-latest]
18-
python-version: ["3.9", "3.10", "3.11"]
17+
python-version: ["3.11"]
1918
steps:
2019
- uses: actions/checkout@v3
2120
- name: Set up Python ${{ matrix.python-version }}
@@ -26,10 +25,16 @@ jobs:
2625
cache-dependency-path: setup.py
2726
- name: Install dependencies
2827
run: |
29-
pip install -e .
28+
# pip install -e .
3029
pip install '.[tests]'
30+
31+
- name: Run flake8
32+
run: |
33+
flake8 ./mapmanagercore --count --select=E9,F63,F7,F82 --show-source --statistics
34+
3135
- name: Test and generate coverage report
3236
run: |
33-
pytest --cov=./tests --cov-report=xml --ignore=./brightest_path_lib/sandbox.py,./brightest_path_lib/sandbox2.py
37+
pytest --cov=./tests --cov-report=xml
38+
3439
- name: Upload coverage to Codecov
3540
uses: codecov/codecov-action@v3

manifest.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
; for example:
55
; recursive-include sanpy/_userFiles ['.py', 'abf']
66
; recursive-include sanpy/detection-presets ['.json']
7+
8+
exclude data/rr30a_s0u/*

0 commit comments

Comments
 (0)