Skip to content

Update specialized_benchmarks.py #1003

Update specialized_benchmarks.py

Update specialized_benchmarks.py #1003

Workflow file for this run

name: Rebuild
on: [push, pull_request]
jobs:
miniconda:
name: Miniconda ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
environment-file: environment.yml
python-version: "3.10"
auto-activate-base: false
- shell: bash -l {0}
run: |
conda info
conda list
python setup.py develop
echo 'PIP FREEZE'
pip freeze
echo 'CONDA LIST'
conda list
pip install pytest coverage==6.5.0 flake8
coverage run -m pytest
coverage report -m -i