Skip to content

Commit c070a8e

Browse files
committedFeb 25, 2025·
3dd6e96afcb09f2f420268a596f268bedda7c543
1 parent 2b294b4 commit c070a8e

File tree

232 files changed

+34201
-16117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

232 files changed

+34201
-16117
lines changed
 

‎.github/workflows/python.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,19 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install flake8 pytest
28-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29-
- name: Lint with flake8
30-
run: |
31-
# stop the build if there are Python syntax errors or undefined names
32-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
33-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
34-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
27+
pip install -r requirements.txt
28+
pip install -r test-requirements.txt
3529
- name: Test with pytest
3630
run: |
37-
pytest
31+
pytest --cov={{packageName}}

‎.gitlab-ci.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,18 @@ stages:
1414
- pip install -r test-requirements.txt
1515
- pytest --cov=neurostore_sdk
1616

17-
pytest-3.7:
18-
extends: .pytest
19-
image: python:3.7-alpine
2017
pytest-3.8:
2118
extends: .pytest
2219
image: python:3.8-alpine
2320
pytest-3.9:
2421
extends: .pytest
25-
image: python:3.9-alpine
22+
image: python:3.9-alpine
23+
pytest-3.10:
24+
extends: .pytest
25+
image: python:3.10-alpine
26+
pytest-3.11:
27+
extends: .pytest
28+
image: python:3.11-alpine
29+
pytest-3.12:
30+
extends: .pytest
31+
image: python:3.12-alpine

0 commit comments

Comments
 (0)
Please sign in to comment.