Skip to content

Commit 4287481

Browse files
committed
deactivated poetry
1 parent 9594c60 commit 4287481

2 files changed

Lines changed: 43 additions & 35 deletions

File tree

.github/workflows/ci.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
name: Python CI
2-
3-
on:
4-
push:
5-
branches: [ "main" ]
6-
pull_request:
7-
branches: [ "main" ]
8-
9-
jobs:
10-
build:
11-
12-
runs-on: ubuntu-latest
13-
strategy:
14-
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16-
17-
steps:
18-
- uses: actions/checkout@v4
19-
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
21-
with:
22-
python-version: ${{ matrix.python-version }}
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
pip install poetry
27-
poetry install
28-
- name: Test with unittest
29-
run: |
30-
poetry run coverage run -m unittest discover tests
31-
- name: Upload coverage reports to Codecov
32-
uses: codecov/codecov-action@v5
33-
with:
34-
token: ${{ secrets.CODECOV_TOKEN }}
1+
#name: Python CI
2+
#
3+
#on:
4+
# push:
5+
# branches: [ "main" ]
6+
# pull_request:
7+
# branches: [ "main" ]
8+
#
9+
#jobs:
10+
# build:
11+
#
12+
# runs-on: ubuntu-latest
13+
# strategy:
14+
# matrix:
15+
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
#
17+
# steps:
18+
# - uses: actions/checkout@v4
19+
# - name: Set up Python ${{ matrix.python-version }}
20+
# uses: actions/setup-python@v5
21+
# with:
22+
# python-version: ${{ matrix.python-version }}
23+
# - name: Install dependencies
24+
# run: |
25+
# python -m pip install --upgrade pip
26+
# pip install poetry
27+
# poetry install
28+
# - name: Test with unittest
29+
# run: |
30+
# poetry run coverage run -m unittest discover tests
31+
# - name: Upload coverage reports to Codecov
32+
# uses: codecov/codecov-action@v5
33+
# with:
34+
# token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,12 @@ cython_debug/
160160
# and can be added to the global gitignore or merged into this file. For a more nuclear
161161
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162162
.idea/
163-
.DS_Store
163+
.DS_Store
164+
165+
# Add these lines if not already present
166+
uv.lock
167+
.venv/
168+
*.pyc
169+
170+
# Poetry files are no longer needed
171+
# poetry.lock # Already removed

0 commit comments

Comments
 (0)