Set compiled_modules=False
automatically
#182
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: Test tests | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test__using_default_setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v1 | |
- run: python -m pip install --upgrade tox | |
- run: python -m tox -- --no-julia -k test__using_default_setup | |
env: | |
PYJULIA_TEST_RUNTIME: dummy |