Remove filelock when reading in column depth spline #168
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: Run unittests with email warnings | |
on: | |
push: | |
jobs: | |
unittest_and_coverage: | |
runs-on: ubuntu-latest | |
name: Run unittests | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Test with unittest | |
run: | | |
python -m unittest discover test/ |