File tree 3 files changed +37
-1
lines changed
3 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+ // README at: https://github.com/devcontainers/templates/tree/main/src/python
3
+ {
4
+ "name" : " Python 3" ,
5
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6
+ "image" : " mcr.microsoft.com/devcontainers/python:1-3.11-bookworm" ,
7
+ "features" : {
8
+ "ghcr.io/devcontainers/features/docker-in-docker:2" : {
9
+ "version" : " latest" ,
10
+ "dockerDashComposeVersion" : " v2"
11
+ }
12
+ },
13
+
14
+ // Features to add to the dev container. More info: https://containers.dev/features.
15
+ // "features": {},
16
+
17
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
18
+ // "forwardPorts": [],
19
+
20
+ // Use 'postCreateCommand' to run commands after the container is created.
21
+ "postCreateCommand" : " pip install --user -r requirements/ubuntu-latest-3.11.txt" ,
22
+ "customizations" : {
23
+ "vscode" : {
24
+ "extensions" : [
25
+ " ms-python.python"
26
+ ]
27
+ }
28
+ }
29
+
30
+ // Configure tool-specific properties.
31
+ // "customizations": {},
32
+
33
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
34
+ // "remoteUser": "root"
35
+ }
Original file line number Diff line number Diff line change 66
66
.testrepository /
67
67
68
68
# vscode:
69
- .devcontainer /
70
69
.vscode /
71
70
72
71
.DS_Store
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ testcontainers-python
7
7
:target: https://pypi.python.org/pypi/testcontainers
8
8
.. image :: https://readthedocs.org/projects/testcontainers-python/badge/?version=latest
9
9
:target: http://testcontainers-python.readthedocs.io/en/latest/?badge=latest
10
+ .. image :: https://github.com/codespaces/badge.svg
11
+ :target: https://codespaces.new/testcontainers/testcontainers-python
10
12
11
13
testcontainers-python facilitates the use of Docker containers for functional and integration testing. The collection of packages currently supports the following features.
12
14
You can’t perform that action at this time.
0 commit comments