Skip to content

reverts unit test structure and test_and_lint workflow #1

reverts unit test structure and test_and_lint workflow

reverts unit test structure and test_and_lint workflow #1

name: Run integration tests
on:
push:
branches:
- feat-53-integration-testing
jobs:
integration_tests:
runs-on: ubuntu-latest
permissions:
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 }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install -e .[all]
python -m pip install s3fs
- name: Configure aws credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ env.AWS_METADATA_MAPPER_ROLE }}
role-session-name: github-integration-test-session
aws-region: ${{ env.AWS_REGION }}
- name: run integration tests
run:
python -m tests.integration.test_bergamo.test_session AWS_METADATA_MAPPER_BUCKET=${{ secrets.AWS_METADATA_MAPPER_BUCKET_DEV }}