Skip to content

M-2 Model Update: Fix Tensor Shape Mismatch & Enhance Data Processing #48

M-2 Model Update: Fix Tensor Shape Mismatch & Enhance Data Processing

M-2 Model Update: Fix Tensor Shape Mismatch & Enhance Data Processing #48

Workflow file for this run

name: Automated Testing
on:
pull_request:
branches:
- main
jobs:
build-py39:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e ".[testing]"
python setup.py install
- name: Download latest model from GitHub Releases
run: |
curl -L -o models/skinvestigator-sm.tflite https://github.com/Thomasbehan/SkinVestigatorAI/releases/download/0.1.5/skinvestigator-sm.tflite
- name: Download some data for testing
run: |
python skinvestigatorai/core/data_scraper.py --pages 1
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --format=github --select=E9,F63,F7,F82 --target-version=py39 .
# default set of ruff rules with GitHub Annotations
ruff --format=github --target-version=py39 .
- name: Test with pytest
run: |
python -m pytest
build:
needs: build-py39
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e ".[testing]"
python setup.py install
- name: Download latest model from GitHub Releases
run: |
curl -L -o models/skinvestigator-sm.tflite https://github.com/Thomasbehan/SkinVestigatorAI/releases/download/0.1.5/skinvestigator-sm.tflite
- name: Download some data for testing
run: |
python skinvestigatorai/core/data_scraper.py
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --format=github --select=E9,F63,F7,F82 --target-version=py39 .
# default set of ruff rules with GitHub Annotations
ruff --format=github --target-version=py39 .
- name: Test with pytest
run: |
python -m pytest