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