Add extra info when running E2E tests (#9927)

This commit is contained in:
Nahuel 2023-01-25 16:46:36 +01:00 committed by GitHub
parent a817b18104
commit a153859061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,8 @@ jobs:
strategy:
fail-fast: false
matrix:
e2e-test: ['python', 'mysql', 'bigquery', 'snowflake', 'dbt_redshift', 'mssql']
# e2e-test: ['python', 'mysql', 'bigquery', 'snowflake', 'dbt_redshift', 'mssql']
e2e-test: ['python', 'mysql']
environment: test
steps:
@ -182,9 +183,12 @@ jobs:
- name: Generate report
run: |
ls -R artifacts
for folder in artifacts/coverage-*; do cp -r $folder/ . ;done
ls
mkdir ingestion/junit
for folder in artifacts/tests-*; do cp -r $folder/ ingestion/junit ;done
ls ingestion/junit
source env/bin/activate
coverage combine --rcfile=ingestion/.coveragerc --keep -a
coverage xml --rcfile=ingestion/.coveragerc --data-file=.coverage -o ingestion/coverage.xml