Parallelize and optimize tests #3337
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: Key-v1-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
- name: Build bitsandbytes | |
run: | | |
pip install bitsandbytes==0.41.1 | |
- name: Build hivemind | |
run: | | |
pip install . | |
- name: Test | |
run: | | |
cd tests | |
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor | |
pytest --durations=0 --durations-min=1.0 -v -n auto | |
build_and_test_p2pd: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20.11' | |
check-latest: true | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8' | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: Key-v1-3.8-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
- name: Build hivemind | |
run: | | |
pip install . --global-option=build_py --global-option="--buildgo" --no-use-pep517 | |
- name: Test | |
run: | | |
cd tests | |
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor | |
pytest -k "p2p" -v -n auto | |
codecov_in_develop_mode: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8' | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: Key-v1-3.8-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
- name: Build bitsandbytes | |
run: | | |
pip install bitsandbytes==0.41.1 | |
- name: Build hivemind | |
run: | | |
pip install -e . --no-use-pep517 | |
- name: Test | |
run: | | |
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor | |
pytest --cov hivemind --cov-config=pyproject.toml -v -n auto tests | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |