Rollback tests (#1054) #55
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: test_documentation | |
on: | |
push: | |
branches: | |
- mainline | |
- releases/* | |
permissions: | |
contents: read | |
jobs: | |
Test-Documentation: | |
name: Run Documentation Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout marqo repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
path: marqo | |
- name: Checkout marqo-base for requirements | |
uses: actions/checkout@v3 | |
with: | |
repository: marqo-ai/marqo-base | |
path: marqo-base | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
pip install -r marqo-base/requirements/amd64-gpu-requirements.txt | |
pip install -r marqo/requirements.dev.txt | |
- name: Run Documentation Tests | |
run: | | |
export PYTHONPATH="./marqo/tests:./marqo/src:./marqo" | |
pytest marqo/tests/test_documentation.py |