GraphShardManager API fixes #25
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: SAR tests | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
sar_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull SAR | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install requirements | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pytest | |
python -m pip install oneccl_bind_pt -f https://developer.intel.com/ipex-whl-stable-cpu | |
python setup.py install | |
- name: Run pytest | |
run: | | |
set +e | |
python -m pytest tests/ -sv |