diff --git a/.github/workflows/multi-gpu-e2e.yml b/.github/workflows/multi-gpu-e2e.yml index 3d9e28f93..84bc095d6 100644 --- a/.github/workflows/multi-gpu-e2e.yml +++ b/.github/workflows/multi-gpu-e2e.yml @@ -75,4 +75,4 @@ jobs: echo "CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}" >> $GITHUB_ENV - name: Run tests job on Modal run: | - modal run cicd.multigpu + modal run -m cicd.multigpu diff --git a/.github/workflows/tests-nightly.yml b/.github/workflows/tests-nightly.yml index cbb2c2d91..4490b0fe9 100644 --- a/.github/workflows/tests-nightly.yml +++ b/.github/workflows/tests-nightly.yml @@ -133,7 +133,7 @@ jobs: echo "CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}" >> $GITHUB_ENV - name: Run tests job on Modal run: | - modal run cicd.e2e_tests + modal run -m cicd.e2e_tests docker-e2e-multigpu-tests: if: github.repository_owner == 'axolotl-ai-cloud' # this job needs to be run on self-hosted GPU runners... @@ -178,4 +178,4 @@ jobs: echo "CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}" >> $GITHUB_ENV - name: Run tests job on Modal run: | - modal run cicd.multigpu + modal run -m cicd.multigpu diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ed8875882..fae436f36 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -261,7 +261,7 @@ jobs: echo "E2E_DOCKERFILE=${{ matrix.dockerfile || 'Dockerfile.jinja'}}" >> $GITHUB_ENV - name: Run tests job on Modal run: | - modal run cicd.e2e_tests + modal run -m cicd.e2e_tests docker-e2e-tests: if: > @@ -326,7 +326,7 @@ jobs: echo "E2E_DOCKERFILE=${{ matrix.dockerfile || 'Dockerfile.jinja'}}" >> $GITHUB_ENV - name: Run tests job on Modal run: | - modal run cicd.e2e_tests + modal run -m cicd.e2e_tests docker-e2e-cleanup: runs-on: [self-hosted, modal] @@ -370,4 +370,4 @@ jobs: echo "CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}" >> $GITHUB_ENV - name: Run tests job on Modal run: | - modal run cicd.cleanup + modal run -m cicd.cleanup