Skip to content

Commit

Permalink
build: fix container requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelli74 committed May 23, 2024
1 parent 46350f5 commit 48a91c9
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,10 @@
"editor.formatOnSave": true,
"editor.formatOnType": true,
"python.formatting.provider": "black",
"python.testing.pytestArgs": [
"tests"
],
"python.testing.pytestArgs": ["tests"],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"pylint.args": [

],
"pylint.args": [],
"files.trimTrailingWhitespace": true
},
// Add the IDs of extensions you want installed when the container is created.
Expand All @@ -42,7 +38,6 @@
]
}
},
"remoteUser": "root",
"containerUser": "vscode",
"postAttachCommand": ["pip3 install --user -r requirements.txt"]
}
"remoteUser": "vscode",
"postAttachCommand": "pip3 install -r requirements.txt"
}

0 comments on commit 48a91c9

Please sign in to comment.