re-enable integration tests

pull/3115/head
Kieran Prasch 2023-05-01 22:29:15 -07:00
parent 1725d994fc
commit 99732b8edd
1 changed files with 10 additions and 10 deletions

View File

@ -61,16 +61,16 @@ jobs:
if: matrix.python-version != '3.10'
run: python -m pytest tests/unit
# Integration tests
# - name: Integration Tests (Coverage)
# if: matrix.python-version == '3.10'
# run: |
# coverage run --data-file=integration_data -m pytest tests/integration
# coverage xml -i --data-file=integration_data -o integration-coverage.xml
#
# - name: Integration Tests
# if: matrix.python-version != '3.10'
# run: python -m pytest tests/integration
# Integration tests
- name: Integration Tests (Coverage)
if: matrix.python-version == '3.10'
run: |
coverage run --data-file=integration_data -m pytest tests/integration
coverage xml -i --data-file=integration_data -o integration-coverage.xml
- name: Integration Tests
if: matrix.python-version != '3.10'
run: python -m pytest tests/integration
# Acceptance tests
- name: Agents Tests (Coverage)