Skip to content

Remove use of LOCAL_SCRATCH #118

Remove use of LOCAL_SCRATCH

Remove use of LOCAL_SCRATCH #118

name: Pytests
on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
# Tests using the FakeManager don't work on Windows because they use bash.
#os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install '.[dev]'
- name: Run pytests
run: |
python -m pytest -v --disable-warnings