Skip to content

Commit

Permalink
Revert to v0.
Browse files Browse the repository at this point in the history
  • Loading branch information
YoruCathy committed Oct 29, 2024
1 parent 7f6b5cd commit 5f9ab5b
Showing 1 changed file with 20 additions and 24 deletions.
44 changes: 20 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
name: CI Checks

on: [pull_request]

jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: "ubuntu-20.04"
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: rcareworld
python-version: "3.10"

- run: |
cd pyrcareworld
pip install -r requirements.txt
Expand All @@ -25,23 +19,25 @@ jobs:
conda install numpy
cd ../
# Run each test file individually
- name: Run test_angle_functions.py
run: |
cd pyrcareworld
pytest tests/test_angle_functions.py
- name: Run test_bathing_env.py
run: |
cd pyrcareworld
pytest tests/test_bathing_env.py
# # Run each test file individually
# - name: Run test_angle_functions.py
# run: |
# cd pyrcareworld
# pytest tests/test_angle_functions.py

- name: Run test_dressing_env.py
run: |
cd pyrcareworld
pytest tests/test_dressing_env.py
# - name: Run test_bathing_env.py
# run: |
# cd pyrcareworld
# pytest tests/test_bathing_env.py

- name: Run test_save_scene.py
run: |
cd pyrcareworld
pytest tests/test_save_scene.py
# - name: Run test_dressing_env.py
# run: |
# cd pyrcareworld
# pytest tests/test_dressing_env.py

# - name: Run test_save_scene.py
# run: |
# cd pyrcareworld
# pytest tests/test_save_scene.py

0 comments on commit 5f9ab5b

Please sign in to comment.