Skip to content

Commit 036bcd3

Browse files
author
mike dupont
committed
docker compose with env
setting TESTS env variable and passing it in
1 parent 61cb1df commit 036bcd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-docker-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: docker pull ${{ inputs.image_url || env.default_image }}
3333

3434
- name: run the Docker tests
35-
run: docker compose up ${{ env.container_name }}-test1 -e TESTS="/app/src/lib/provable/test/merkle-list.test.ts"
35+
run: TESTS="/app/src/lib/provable/test/merkle-list.test.ts" docker compose up ${{ env.container_name }}
3636
# /app/src/lib/provable/test/merkle-tree.test.ts /app/src/lib/provable/test/scalar.test.ts /app/src/lib/provable/test/merkle-map.test.ts /app/src/lib/provable/test/provable.test.ts /app/src/lib/provable/test/primitives.test.ts /app/src/lib/provable/test/group.test.ts /app/src/lib/provable/test/int.test.ts /app/src/lib/mina/precondition.test.ts"
3737
env:
3838
DOCKER_IMAGE_URL: ${{ inputs.image_url || env.default_image}}

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
environment:
2424
- PROOF_LEVEL=full
2525
- LOG_LEVEL=Debug
26-
# - TESTS=${TESTS}
26+
- TESTS=${TESTS}
2727
working_dir: /app
2828
# mount the source
2929
volumes:

0 commit comments

Comments
 (0)