add mounts to empack packed environment #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
test_with_conda: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get number of CPU cores | |
uses: SimenB/github-actions-cpu-cores@v1 | |
- name: Install mamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: dev-env.yml | |
environment-name: dev-env | |
micromamba-version: "1.4.1" | |
- name: Install Playwright | |
run: | | |
playwright install | |
# # temporary workaround to get main from empack | |
# - name: install empack main | |
# run: | | |
# micromamba activate dev-env | |
# pip install git+https://github.com/emscripten-forge/empack.git@main --no-deps --no-build-isolation | |
- name: Install pyjs-code-runner | |
run: | | |
micromamba activate dev-env | |
python -m pip install . --no-deps | |
- name: Run Tests | |
run: | | |
micromamba activate dev-env | |
pytest -s | |
test_with_pip: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get number of CPU cores | |
uses: SimenB/github-actions-cpu-cores@v1 | |
- name: Install mamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: dev-env-pip.yml | |
environment-name: dev-env | |
micromamba-version: "1.4.1" | |
- name: Install pyjs-code-runner | |
run: | | |
micromamba activate dev-env | |
python -m pip install . | |
playwright install | |
- name: Run Tests | |
run: | | |
micromamba activate dev-env | |
pytest -s |