Skip to content

Commit 5d10c52

Browse files
committed
Update CI workflow for improved Python dependency management and testing
- Adjusted the installation command for Python dependencies to use "src/[dev]". - Renamed the pytest job to "tests & coverage" for clarity. - Removed the safety check step from the linting process.
1 parent 0b881cc commit 5d10c52

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,15 @@ jobs:
3434

3535
- name: Install Python dependencies
3636
run: |
37-
pip install -e ".[dev]"
38-
pip install ruff safety
37+
pip install -e "src/[dev]"
3938
4039
- name: Lint Python
4140
run: |
4241
ruff check src/zklora/ src/scripts/
4342
ruff format --check src/zklora/ src/scripts/
44-
safety check --json
4543
4644
pytest:
47-
name: all the python tests
45+
name: tests & coverage
4846
runs-on: ubuntu-latest
4947
timeout-minutes: 25
5048
steps:

0 commit comments

Comments
 (0)