-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Xuehai Pan <[email protected]> Co-authored-by: Xuehai Pan <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c1c598e
commit 0be3cae
Showing
5 changed files
with
74 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths: | ||
- setup.py | ||
- pyproject.toml | ||
- MANIFEST.in | ||
- tests/** | ||
- safety_gymnasium/** | ||
- .github/workflows/tests.yml | ||
# Allow to trigger the workflow manually | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
|
||
jobs: | ||
test-ubuntu: | ||
name: Test for Python ${{ matrix.python-version }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
# TODO: add Python 3.11 to test matrix | ||
python-version: ["3.8", "3.9", "3.10"] | ||
fail-fast: false | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: "recursive" | ||
fetch-depth: 1 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
update-environment: true | ||
|
||
- name: Upgrade pip | ||
run: | | ||
python -m pip install --upgrade pip setuptools wheel | ||
- name: Install rendering dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libosmesa6-dev | ||
sudo apt-get install python3-opengl | ||
- name: Set MUJOCO_GL | ||
run: | | ||
echo "MUJOCO_GL=osmesa" >> "${GITHUB_ENV}" | ||
echo "PYOPENGL_PLATFORM=osmesa" >> "${GITHUB_ENV}" | ||
- name: Install Safety-Gymnasium | ||
run: | | ||
python -m pip install -vvv --editable '.[test]' | ||
- name: Test with pytest | ||
run: | | ||
make pytest |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pytes | ||
pytest | ||
pytest-cov | ||
pytest-xdist |