Skip to content

Commit

Permalink
run tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
julienp committed Jul 25, 2024
1 parent d635442 commit a1b2852
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
--volume /tmp:/src \
--entrypoint /bin/bash \
${{ env.DOCKER_USERNAME }}/pulumi:${{ env.PULUMI_VERSION }} \
-c "/src/pulumi-test-containers -test.parallel=1 -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
-c "/src/pulumi-test-containers -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
- name: Run CLI Tool Tests
run: |
docker run \
Expand All @@ -124,7 +124,7 @@ jobs:
--volume /tmp:/src \
--entrypoint /bin/bash \
${{ env.DOCKER_USERNAME }}/pulumi:${{ env.PULUMI_VERSION }} \
-c "/src/pulumi-test-containers -test.parallel=1 -test.timeout=1h -test.v -test.run TestCLIToolTests"
-c "/src/pulumi-test-containers -test.timeout=1h -test.v -test.run TestCLIToolTests"
provider-build-environment:
name: Provider Build Environment image
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
--volume /tmp:/src \
--entrypoint /bin/bash \
${{ env.DOCKER_USERNAME }}/pulumi-provider-build-environment:${{ env.PULUMI_VERSION }} \
-c "/src/pulumi-test-containers -test.parallel=1 -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
-c "/src/pulumi-test-containers -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
base:
name: Base image
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
--entrypoint /bin/bash \
--platform ${{ matrix.arch }} \
${{ env.DOCKER_USERNAME }}/pulumi-${{ matrix.sdk }}:${{ env.PULUMI_VERSION }}-debian-${{ matrix.arch }} \
-c "/src/pulumi-test-containers -test.parallel=1 -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
-c "/src/pulumi-test-containers -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
ubi-sdk:
name: UBI SDK images
Expand Down Expand Up @@ -348,4 +348,4 @@ jobs:
--volume /tmp:/src \
--entrypoint /bin/bash \
${{ env.DOCKER_USERNAME }}/pulumi-${{ matrix.sdk }}:${{ env.PULUMI_VERSION }}-ubi \
-c "/src/pulumi-test-containers -test.parallel=1 -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"
-c "/src/pulumi-test-containers -test.timeout=1h -test.v -test.run TestPulumiTemplateTests"

0 comments on commit a1b2852

Please sign in to comment.