File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Run Tests
2+
3+ on :
4+ push :
5+ branches : ["main", "github-ci"]
6+ pull_request :
7+ branches : [ "main", "github-ci" ]
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v4
15+
16+ # Set up micromamba
17+ - name : Set up micromamba
18+ uses : mamba-org/setup-micromamba@v2
19+ with :
20+ environment-file : rf_diffusion/environment/environment.yml
21+ init-shell : bash
22+ cache-environment : true
23+
24+ - name : Install pytest
25+ shell : micromamba-shell {0}
26+ run : |
27+ python -m pip install pytest
28+
29+ - name : Download weights
30+ run : |
31+ curl -O https://files.ipd.uw.edu/pub/2025_RFDpoly/train_session2024-07-08_1720455712_BFF_3.00.pt
32+
33+ - name : Run tests
34+ shell : micromamba-shell {0}
35+ run : |
36+ python -m pytest test/test_demo.py
You can’t perform that action at this time.
0 commit comments