Skip to content

Commit

Permalink
pass everything
Browse files Browse the repository at this point in the history
  • Loading branch information
azliu0 committed Apr 15, 2024
1 parent b749eaf commit 479faeb
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 35 deletions.
68 changes: 34 additions & 34 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
{
"name": "pigeon",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspaces/pigeon",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": 20
},
"ghcr.io/robbert229/devcontainer-features/postgresql-client:1": {
"version": 16
}
"name": "pigeon",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspaces/pigeon",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": 20
},
"forwardPorts": [
5173,
2010,
6379,
5432
],
"postCreateCommand": "bash scripts/devcontainer_setup.sh",
"customizations": {
"vscode": {
"extensions": [
"tamasfe.even-better-toml",
"charliermarsh.ruff"
"ghcr.io/robbert229/devcontainer-features/postgresql-client:1": {
"version": 16
}
},
"forwardPorts": [
5173,
2010,
6379,
5432
],
"postCreateCommand": "bash scripts/devcontainer_setup.sh",
"customizations": {
"vscode": {
"extensions": [
"tamasfe.even-better-toml",
"charliermarsh.ruff"
],
"settings": {
"editor.rulers": [
88
],
"settings": {
"editor.rulers": [
88
],
"python.analysis.typeCheckingMode": "standard",
"python.analysis.autoImportCompletions": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.tabSize": 4,
"editor.showUnused": false
}
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.tabSize": 4,
"editor.showUnused": false
}
}
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cache: "pip"

- name: Install dependencies
run: pip install -r requirements.txt
run: pip install -r requirements.txt -r requirements.dev.txt

- name: Run Pyright
uses: jakebailey/pyright-action@v1
Expand Down
3 changes: 3 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ pre-commit
# needed for pip-compile, needed to generate requirements.txt
pip-tools
pigar

# needed to run tests
pytest==8.0.2

0 comments on commit 479faeb

Please sign in to comment.