fix: add unicode degrees symbol #197
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: Test SKOPE Time Series API | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
./configure dev | |
pip install -r timeseries/deploy/requirements/base.txt -r timeseries/deploy/requirements/dev.txt | |
- name: Run the tests | |
run: | | |
trap '[ -n "$(jobs -pr)" ] && kill $(jobs -pr)' INT QUIT TERM EXIT | |
cd timeseries | |
ENVIRONMENT=dev pytest |