Skip to content

Commit e43d846

Browse files
authored
print pwd
1 parent 42c940d commit e43d846

1 file changed

Lines changed: 32 additions & 27 deletions

File tree

.github/workflows/python_next_test.yml

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,29 @@ jobs:
1414
runs-on: ubuntu-latest
1515
container:
1616
image: ghcr.io/pvital/pvital-python:latest
17-
services:
18-
postgres:
19-
image: public.ecr.aws/docker/library/postgres:16.10-trixie
20-
env:
21-
POSTGRES_USER: root
22-
POSTGRES_PASSWORD: passw0rd
23-
POSTGRES_DB: instana_test_db
24-
mariadb:
25-
image: public.ecr.aws/docker/library/mariadb:11.3.2
26-
env:
27-
MYSQL_ROOT_PASSWORD: passw0rd
28-
MYSQL_DATABASE: instana_test_db
29-
redis:
30-
image: public.ecr.aws/docker/library/redis:7.2.4-bookworm
31-
rabbitmq:
32-
image: public.ecr.aws/docker/library/rabbitmq:3.13.0
33-
mongo:
34-
image: public.ecr.aws/docker/library/mongo:7.0.6
35-
gcloud-pubsub:
36-
image: quay.io/thekevjames/gcloud-pubsub-emulator:latest
37-
env:
38-
PUBSUB_EMULATOR_HOST: 0.0.0.0:8681
39-
PUBSUB_PROJECT1: test-project,test-topic
17+
# services:
18+
# postgres:
19+
# image: public.ecr.aws/docker/library/postgres:16.10-trixie
20+
# env:
21+
# POSTGRES_USER: root
22+
# POSTGRES_PASSWORD: passw0rd
23+
# POSTGRES_DB: instana_test_db
24+
# mariadb:
25+
# image: public.ecr.aws/docker/library/mariadb:11.3.2
26+
# env:
27+
# MYSQL_ROOT_PASSWORD: passw0rd
28+
# MYSQL_DATABASE: instana_test_db
29+
# redis:
30+
# image: public.ecr.aws/docker/library/redis:7.2.4-bookworm
31+
# rabbitmq:
32+
# image: public.ecr.aws/docker/library/rabbitmq:3.13.0
33+
# mongo:
34+
# image: public.ecr.aws/docker/library/mongo:7.0.6
35+
# gcloud-pubsub:
36+
# image: quay.io/thekevjames/gcloud-pubsub-emulator:latest
37+
# env:
38+
# PUBSUB_EMULATOR_HOST: 0.0.0.0:8681
39+
# PUBSUB_PROJECT1: test-project,test-topic
4040
steps:
4141
- uses: actions/checkout@v5
4242
#- name: Set up Python 3.15.0
@@ -45,6 +45,11 @@ jobs:
4545
# python-version: 3.15.0-alpha.7
4646
- name: Display Python version
4747
run: python -c "import sys; print(sys.version)"
48+
- name: Check code
49+
run: |
50+
pwd
51+
ls -l
52+
ls -l ${HOME}
4853
- name: Install Python dependencies
4954
run: |
5055
. venv/bin/activate
@@ -53,9 +58,9 @@ jobs:
5358
#- name: Install Python test dependencies
5459
# run: |
5560
# pip install -r tests/requirements-pre315.txt
56-
- name: Test with pytest
57-
run: |
58-
. venv/bin/activate
59-
pytest -v tests
61+
# - name: Test with pytest
62+
# run: |
63+
# . venv/bin/activate
64+
# pytest -v tests
6065

6166

0 commit comments

Comments
 (0)