Skip to content

Commit

Permalink
Configuration changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DillonOLeary committed Nov 18, 2024
1 parent 289ef24 commit 0b6d96f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .devcontainer/post-install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash

# Copy the mounted git config to the container file system and make it executable.
# FIXME I don't think this is working. It's close, but on first container build
# FIME it fails. There needs to be a little investigation
cp /tmp/.gitconfig /home/vscode/.gitconfig && chmod u+w /home/vscode/.gitconfig
# Install the poetry project
cd /workspaces/immunization-records-pipeline/data-pipeline && poetry install
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"--profile",
"black"
],
"python.testing.cwd": "/workspaces/immunization-records-pipeline/data-pipeline",
"python.testing.cwd": "./data-pipeline",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"tests"
],
"python.defaultInterpreterPath": "/workspaces/immunization-records-pipeline/data-pipeline/.venv/bin/python",
"python.testing.pytestPath": "/workspaces/immunization-records-pipeline/data-pipeline/.venv/bin/pytest"
"python.defaultInterpreterPath": "./data-pipeline/.venv/bin/python",
"python.testing.pytestPath": "./data-pipeline/.venv/bin/pytest"
}

0 comments on commit 0b6d96f

Please sign in to comment.