Skip to content

Commit

Permalink
chore: remove duplicate tests in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akatief committed Feb 9, 2024
1 parent 2ac1294 commit 522484a
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,28 +68,3 @@ jobs:
pylint --disable=trailing-whitespace,missing-class-docstring,missing-final-newline,trailing-newlines \
--fail-under=9.0 \
$(git ls-files '*.py') || echo "::warning::Pylint check failed, but the workflow will continue."
tests:
needs: check-files
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install dependencies
run: |
pip install .
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest -v --cov-fail-under=60 --cov=ukp_project_template -l --tb=short --maxfail=1 tests/

0 comments on commit 522484a

Please sign in to comment.