Skip to content

Commit 9ed4644

Browse files
authored
Merge branch 'main' into bkorbar/pyavapi
2 parents a288c49 + 35b0b9e commit 9ed4644

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2602
-524
lines changed

.github/workflows/build-m1-binaries.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
if: ${{ (github.event_name == 'pull_request' && startsWith(github.base_ref, 'release')) || startsWith(github.ref, 'refs/heads/release') }}
3737
run: |
3838
echo "CHANNEL=test" >> "$GITHUB_ENV"
39+
- name: Setup miniconda
40+
uses: pytorch/test-infra/.github/actions/setup-miniconda@main
3941
- name: Build TorchVision M1 wheel
4042
shell: arch -arch arm64 bash {0}
4143
env:
@@ -109,12 +111,13 @@ jobs:
109111
if: ${{ (github.event_name == 'pull_request' && startsWith(github.base_ref, 'release')) || startsWith(github.ref, 'refs/heads/release') }}
110112
run: |
111113
echo "CHANNEL=test" >> "$GITHUB_ENV"
114+
- name: Setup miniconda
115+
uses: pytorch/test-infra/.github/actions/setup-miniconda@main
112116
- name: Install conda-build and purge previous artifacts
113117
shell: arch -arch arm64 bash {0}
114118
run: |
115119
conda install -yq conda-build
116120
conda build purge-all
117-
118121
- name: Build TorchVision M1 conda package
119122
shell: arch -arch arm64 bash {0}
120123
env:

.github/workflows/prototype-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ jobs:
3939
- name: Install test requirements
4040
run: pip install --progress-bar=off pytest pytest-mock
4141

42-
- name: Run prototype tests
42+
- name: Run prototype datasets tests
4343
shell: bash
44-
run: pytest -vvv --durations=20 test/test_prototype_*.py
44+
run: pytest --durations=20 test/test_prototype_datasets*.py
45+
46+
- name: Run prototype transforms tests
47+
shell: bash
48+
run: pytest --durations=20 test/test_prototype_transforms*.py
49+
50+
- name: Run prototype models tests
51+
shell: bash
52+
run: pytest --durations=20 test/test_prototype_models*.py
32.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)