diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 987c1fa..d13dec8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install build hatchling pytest soundfile torchcodec + pip install build hatchling pytest soundfile - name: Build package run: python -m build --wheel --outdir dist @@ -52,5 +52,10 @@ jobs: subprocess.check_call([sys.executable, "-m", "pip", "install", whl]) shell: python + - name: Install torchcodec + run: | + # Только ПОСЛЕ установки вашего пакета + pip install torchcodec + - name: Run tests run: pytest tests \ No newline at end of file