Skip to content

Use extras_require.test and pytest for test dependencies. #227

Use extras_require.test and pytest for test dependencies.

Use extras_require.test and pytest for test dependencies. #227

Workflow file for this run

name: bloom-ci
on:
push:
branches: ['master']
pull_request:
branches: ['*']
schedule:
- cron: '40 7 * * 0'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: [3.7, 3.8, 3.9]
include:
- os: ubuntu-18.04
python: 2.7
- os: ubuntu-18.04
python: 3.6
name: bloom tests
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python}}
- name: Install dependencies
run: |
python -m pip install -U -e .[test] pytest-cov
- name: Run tests
run: |
BLOOM_VERBOSE=1 python -m pytest test --cov