When testing my model with tools/test.py, my config will be messed up by the "--save-preds" option. #1385
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: pr_stage_test | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- 'README_zh-CN.md' | |
- 'docs/**' | |
- 'demo/**' | |
- '.dev_scripts/**' | |
- '.circleci/**' | |
- 'projects/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_cpu: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: [3.7] | |
include: | |
- torch: 1.8.1 | |
torchvision: 0.9.1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: pip install pip --upgrade | |
- name: Install PyTorch | |
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html | |
- name: Install MMEngine | |
run: pip install git+https://github.com/open-mmlab/mmengine.git@main | |
- name: Install MMCV | |
run: | | |
pip install -U openmim | |
mim install 'mmcv >= 2.0.0rc1' | |
- name: Install MMDet | |
run: pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | |
- name: Install other dependencies | |
run: pip install -r requirements/tests.txt | |
- name: Build and install | |
run: rm -rf .eggs && pip install -e . | |
- name: Run unittests and generate coverage report | |
run: | | |
coverage run --branch --source mmocr -m pytest tests/ | |
coverage xml | |
coverage report -m | |
# Upload coverage report for python3.7 && pytorch1.8.1 cpu | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1.0.14 | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
build_windows: | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
python: [3.7] | |
platform: [cpu, cu111] | |
torch: [1.8.1] | |
torchvision: [0.9.1] | |
include: | |
- python-version: 3.8 | |
platform: cu117 | |
torch: 2.0.0 | |
torchvision: 0.15.1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: Install lmdb | |
run: pip install lmdb | |
- name: Install PyTorch | |
run: pip install torch==${{matrix.torch}}+${{matrix.platform}} torchvision==${{matrix.torchvision}}+${{matrix.platform}} -f https://download.pytorch.org/whl/${{matrix.platform}}/torch_stable.html | |
- name: Install mmocr dependencies | |
run: | | |
pip install git+https://github.com/open-mmlab/mmengine.git@main | |
pip install -U openmim | |
mim install 'mmcv >= 2.0.0rc1' | |
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | |
pip install -r requirements/tests.txt | |
- name: Build and install | |
run: | | |
pip install -e . | |
- name: Run unittests and generate coverage report | |
run: | | |
pytest tests/ |