Moved assets test to unit tests dir

This commit is contained in:
Jedrzej Kosinski 2026-01-30 23:05:19 -08:00
parent 942b2a6526
commit e8e1c13e83
12 changed files with 1 additions and 32 deletions

View File

@ -1,30 +0,0 @@
name: Assets Tests
on:
push:
branches: [ main, master, release/** ]
pull_request:
branches: [ main, master, release/** ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements.txt
- name: Run Assets Tests
run: |
pip install -r tests-assets/requirements.txt
python -m pytest tests-assets -v

View File

@ -1,2 +0,0 @@
pytest>=7.8.0
blake3

View File

@ -2,3 +2,4 @@ pytest>=7.8.0
pytest-aiohttp
pytest-asyncio
websocket-client
blake3