Update tests for CI on next (#1718)

This commit is contained in:
Ted Patrick
2023-09-15 11:26:00 -05:00
committed by GitHub
parent eb0d1ff740
commit 5c90b19707

View File

@@ -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