add text to inference #83
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: pytest | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
tests: | |
# See https://stackoverflow.com/questions/72703363/how-to-activate-conda-environment-in-github-actions | |
defaults: | |
run: | |
shell: bash -l {0} | |
name: python-matrix | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: ftw | |
environment-file: env.yml | |
auto-activate-base: false | |
- name: Install Python dependencies | |
run: pip install -e .[dev] | |
- name: Download model | |
run: wget https://github.com/fieldsoftheworld/ftw-baselines/releases/download/Pretrained-Models/3_Class_FULL_FTW_Pretrained.ckpt | |
- name: Execute help tests | |
run: pytest src/tests/test_help.py | |
- name: Execute data tests | |
run: pytest src/tests/test_data.py | |
- name: Execute model tests | |
run: pytest src/tests/test_model.py | |
- name: Execute inference tests | |
run: pytest src/tests/test_inference.py | |