From 1b8bf715340cfada3397d16c12653e9e57d264cf Mon Sep 17 00:00:00 2001 From: clavedeluna Date: Tue, 17 Oct 2023 12:47:54 -0300 Subject: [PATCH] separate integration tests in CI --- .github/workflows/integration_test.yml | 37 ++++++++++++++++++++++++++ .github/workflows/test.yml | 6 ++--- 2 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/integration_test.yml diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml new file mode 100644 index 00000000..e9977dbd --- /dev/null +++ b/.github/workflows/integration_test.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c5136291..2986810e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Test +name: Unit Tests on: push: @@ -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'] @@ -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: