force openblas #6
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: Debug Python 3.8 and Ubuntu (conda) | |
on: | |
push: | |
# branches: [master, devel] | |
branches: [master] | |
workflow_dispatch: | |
# # schedule: | |
# # # * is a special character in YAML so you have to quote this string | |
# # - cron: '*/0 * * * *' # run once a day | |
jobs: | |
pyapprox_unit_tests: | |
name: Debug Python 3.8 and Ubuntu (conda) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# quotes needed around two-digit versions | |
python-version: [3.8] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Miniconda with Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: pyapprox-base | |
python-version: ${{ matrix.python-version }} | |
# channels: defaults,conda-forge | |
channels: defaults | |
environment-file: environment.yml | |
auto-update-conda: true | |
# use-only-tar-bz2: true | |
auto-activate-base: false | |
- name: Conda list | |
shell: bash -l {0} # - l {0} is needed to activate created env | |
run: | | |
conda list | |
conda env list | |
- name: Setup PyApprox | |
shell: bash -l {0} | |
run: | | |
pip install -e . | |
- name: Test PyApprox | |
shell: bash -l {0} | |
run: | | |
pytest -s --cov-report term --cov=pyapprox | |
# -s disables capturing stdout so print statements print to screen | |
# python setup.py test |