Install with extra requirements #1875
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CPU tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
defaults: | |
run: | |
shell: bash | |
env: | |
HF_TOKEN: ${{ secrets.HF_TOKEN }} | |
jobs: | |
cpu-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {os: "macOS-11", python-version: "3.10"} | |
- {os: "ubuntu-20.04", python-version: "3.10"} | |
- {os: "windows-2022", python-version: "3.10"} | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements.txt | |
setup.py | |
- name: Install minimal dependencies | |
run: | | |
pip install -r requirements.txt | |
pip list | |
# make sure all modules are importable | |
modules=$( | |
find * -type f -name "*.py" | \ | |
grep -v tests | grep "/" | grep -v lm_eval | grep -v xla | \ | |
sed 's/\.py$//' | sed 's/\//./g' | \ | |
sed 's/.__init__//g' | xargs -I {} echo "import {};" | |
) | |
echo "$modules" | |
python -c "$modules" | |
- name: Run tests without the package installed | |
run: | | |
pip install pytest pytest-rerunfailures transformers einops bitsandbytes scipy tokenizers zstandard pandas sentencepiece protobuf | |
pip list | |
pytest -v --disable-pytest-warnings --strict-markers --color=yes | |
- name: Run tests | |
run: | | |
pip install . --no-deps | |
pytest -v --disable-pytest-warnings --strict-markers --color=yes |