File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2323 python -m pip install --upgrade pip
2424 pip install setuptools wheel
2525 - name : Run tests
26+ env :
27+ HF_TOKEN : ${{ secrets.HF_TOKEN }}
2628 run : |
2729 pip install pytest pytest-cov pytest-randomly psutil
2830 pip install -e .
Original file line number Diff line number Diff line change 2525 pip install pytest pytest-cov psutil
2626
2727 - name : Run unit tests
28+ env :
29+ HF_TOKEN : ${{ secrets.HF_TOKEN }}
2830 run : |
2931 pytest tests/ -v --cov=adaptive_classifier --cov-report=xml --cov-report=term -m "not integration"
3032
5658 pip install pytest psutil
5759
5860 - name : Run integration tests
61+ env :
62+ HF_TOKEN : ${{ secrets.HF_TOKEN }}
5963 run : |
6064 pytest tests/test_enterprise_classifiers_integration.py -v -m "integration" --tb=short
6165
Original file line number Diff line number Diff line change 1515
1616setup (
1717 name = "adaptive-classifier" ,
18- version = "0.0.18 " ,
18+ version = "0.0.19 " ,
1919 author = "codelion" ,
2020 author_email = "codelion@okyasoft.com" ,
2121 description = "A flexible, adaptive classification system for dynamic text classification" ,
Original file line number Diff line number Diff line change 44from .multilabel import MultiLabelAdaptiveClassifier , MultiLabelAdaptiveHead
55from huggingface_hub import ModelHubMixin
66
7- __version__ = "0.0.18 "
7+ __version__ = "0.0.19 "
88
99__all__ = [
1010 "AdaptiveClassifier" ,
You can’t perform that action at this time.
0 commit comments