Skip to content

Commit

Permalink
Add dev. dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbayley committed Feb 19, 2024
1 parent a448992 commit 579f8ff
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"ghcr.io/devcontainers/features/powershell:1": {},
"ghcr.io/devcontainers/features/python:1": {
"version": 3.11,
"toolsToInstall": "pytest",
"installTools": true,
"toolsToInstall": "",
"installTools": false,
"optimize": false,
"enableShared": false
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
run: ./setup.sh

- name: Run Test Suite
run: pytest
run: python -m pytest
4 changes: 4 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
iniconfig==2.0.0
packaging==23.2
pluggy==1.4.0
pytest==8.0.1
3 changes: 2 additions & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

python -m pip install --upgrade pip
pip install --user -r requirements.txt
pip install --user -r requirements.txt
pip install --user -r requirements.dev.txt

0 comments on commit 579f8ff

Please sign in to comment.