From 5c90b197077a83e346bd6b1594ebff2d8107efca Mon Sep 17 00:00:00 2001 From: Ted Patrick Date: Fri, 15 Sep 2023 11:26:00 -0500 Subject: [PATCH] Update tests for CI on next (#1718) --- .github/workflows/test-next.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/test-next.yml b/.github/workflows/test-next.yml index f565840d..454deffe 100644 --- a/.github/workflows/test-next.yml +++ b/.github/workflows/test-next.yml @@ -15,7 +15,6 @@ on: - next paths: - pyscript.core/** - - pyscriptjs/** - examples/** - .github/workflows/test-next.yml # Test that workflow works when changed workflow_dispatch: @@ -23,9 +22,6 @@ on: jobs: BuildAndTest: runs-on: ubuntu-latest-8core - defaults: - run: - working-directory: pyscriptjs env: MINICONDA_PYTHON_VERSION: py38 MINICONDA_VERSION: 4.11.0 @@ -59,24 +55,12 @@ jobs: - name: Setup Environment run: make setup - - name: Build - run: make build - - - name: TypeScript Tests (core) - run: make test-ts - - name: Python Tests run: make test-py - - name: install next deps - working-directory: pyscript.core - run: npm i - - - name: Run next tests - run: make test - - name: Integration Tests - run: make test-integration-parallel + run: make test-integration + #run: make test-integration-parallel - name: Examples Tests run: make test-examples