We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd4f5fe commit 609be25Copy full SHA for 609be25
2 files changed
.github/workflows/publish.yml
@@ -23,6 +23,8 @@ jobs:
23
python -m pip install --upgrade pip
24
pip install setuptools wheel
25
- name: Run tests
26
+ env:
27
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
28
run: |
29
pip install pytest pytest-cov pytest-randomly psutil
30
pip install -e .
.github/workflows/test.yml
@@ -25,6 +25,8 @@ jobs:
pip install pytest pytest-cov psutil
- name: Run unit tests
31
pytest tests/ -v --cov=adaptive_classifier --cov-report=xml --cov-report=term -m "not integration"
32
@@ -56,6 +58,8 @@ jobs:
56
58
pip install pytest psutil
57
59
60
- name: Run integration tests
61
62
63
64
pytest tests/test_enterprise_classifiers_integration.py -v -m "integration" --tb=short
65
0 commit comments