From 15a913072587b4592e1febd3bf81272f4a8f409f Mon Sep 17 00:00:00 2001 From: vepricov Date: Tue, 5 Nov 2024 15:44:19 +0300 Subject: [PATCH] test_2 --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d0e8957..4882d7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,14 @@ jobs: - name: Install Dependencies run: | pip install torch + pip install -U pytest pytest-cov ls ./ - name: Testing run: | - PYTHONPATH=tests/test_simple.py + PYTHONPATH=src/ pytest tests/ --cov=relaxit --cov-report=xml + - name: Upload to Codecov + uses: codecov/codecov-action@v2 + with: + files: ./coverage.xml, + fail_ci_if_error: true + verbose: true