Python engine adapters #37
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: Run tests on Pull Request | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
test_core: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' # Replace '3.x' with the specific version if needed | |
- name: Pre-test Setup | |
run: | | |
python3 -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
# build the local version of the core module to be loaded into python | |
python tests/scripts/local_build.py | |
# train the models for the tests | |
python tests/scripts/build_assets.py | |
- name: Run Python Unit Tests | |
run: | | |
source venv/bin/activate | |
python -m unittest discover | |
deactivate | |
- name: Run Core Unit Tests | |
run: cd modules/core && cargo test | |
- name: Run HTTP Transfer Tests | |
run: cargo test |