Skip to content

feat: added tsne as an option, defaulted to false as it is generating… #74

feat: added tsne as an option, defaulted to false as it is generating…

feat: added tsne as an option, defaulted to false as it is generating… #74

Workflow file for this run

name: Run pytest
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install pytest
run: pip install pytest
- name: Set PYTHONPATH to subdirectory sdcat
run: echo "PYTHONPATH=." >> $GITHUB_ENV
- name: Run pytest
run: pytest