Skip to content

black + isort

black + isort #454

Workflow file for this run

name: Run tests and upload coverage
on: ["push", "pull_request"]
jobs:
test-api-python:
name: Coverage
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
mongodb-version: ["3.6"]
steps:
# Check out Scout code
- uses: actions/checkout@v4
# Set up python
- name: Set up Python ${{ matrix.python-version}}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version}}
- name: Production Dependencies
run: |
python -m pip install --upgrade pip
pip install ./api[test]
- name: Test API with pytest & coveralls
run: |
pytest --cov ./api/tests
coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
test-js:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.8.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install node packages
working-directory: ./frontend
run: npm ci
- name: Build packages
working-directory: ./frontend
run: npm run build --if-present
- name: Run tests
working-directory: ./frontend
run: npm run test