Skip to content

Commit

Permalink
separate integration tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
clavedeluna committed Oct 17, 2023
1 parent 8573a09 commit 1b8bf71
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
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.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 @@ -18,7 +18,7 @@ jobs:
test:
name: Run pytest
runs-on: ubuntu-20.04
timeout-minutes: 15
timeout-minutes: 10
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
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

0 comments on commit 1b8bf71

Please sign in to comment.