Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

separate integration tests in CI #79

Merged
merged 3 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Integration Tests

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
name: Run pytest
runs-on: ubuntu-20.04
timeout-minutes: 10
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check out code
uses: actions/checkout@v4
- name: Install Codemodder Package
run: pip install .
- name: Install Dependencies
run: pip install -r requirements/test.txt
- name: Run integration tests
run: make integration-test
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: Unit Tests

on:
push:
Expand All @@ -11,7 +11,7 @@ on:
- develop

concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand All @@ -35,8 +35,6 @@ jobs:
run: pip install -r requirements/test.txt
- name: Run unit tests
run: make test
- name: Run integration tests
run: make integration-test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
Expand Down