From c0f9e163eb4231567f4c57c169a634edb9664f94 Mon Sep 17 00:00:00 2001 From: Mekhla Kapoor <54870020+mekhlakapoor@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:04:06 -0700 Subject: [PATCH] testing with new bucket --- .github/workflows/run_integration_test_dev.yml | 8 ++++---- CONTRIBUTING.md | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run_integration_test_dev.yml b/.github/workflows/run_integration_test_dev.yml index fa20b440..05fdea31 100644 --- a/.github/workflows/run_integration_test_dev.yml +++ b/.github/workflows/run_integration_test_dev.yml @@ -3,7 +3,7 @@ name: Run integration tests on: push: branches: - - dev + - feat-53-integration-testing jobs: integration_tests: @@ -12,9 +12,9 @@ jobs: id-token: write contents: read env: - AWS_METADATA_MAPPER_ROLE: ${{ secrets.AWS_METADATA_MAPPER_ROLE_DEV }} - AWS_METADATA_MAPPER_BUCKET: ${{ vars.AWS_METADATA_MAPPER_BUCKET_DEV }} - AWS_REGION: ${{ vars.AWS_REGION_DEV }} + AWS_METADATA_MAPPER_ROLE: ${{ secrets.AWS_METADATA_MAPPER_ROLE_PROD }} + AWS_METADATA_MAPPER_BUCKET: ${{ vars.AWS_METADATA_MAPPER_BUCKET_PROD }} + AWS_REGION: ${{ vars.AWS_REGION_PROD }} MOUNT_S3_URL: ${{ vars.MOUNT_S3_URL }} steps: - uses: actions/checkout@v3 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7b1f02dd..b256b399 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,6 @@ There are several libraries used to run linters and check documentation. We've i ### Integration Testing To ensure that an ETL runs as expected against data on the VAST, you can run an integration test locally by pointing to the input directory on VAST. For example, to test the 'bergamo' package: ```bash - python tests/integration/bergamo/session.py --input_source "/path/to/test/data/folder" IntegrationTestBergamo + python tests/integration/bergamo/session.py --input_source "/allen/aind/scratch/svc_aind_upload/test_data_sets/bergamo" IntegrationTestBergamo ``` -