Skip to content

Commit

Permalink
WIP started working on ROS-I CI and pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoesposito1988 committed Jan 31, 2025
1 parent d5de1d8 commit ed9df4d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/industrial_ci_action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push, pull_request]

jobs:
industrial_ci:
strategy:
matrix: # matrix is the product of entries
ROS_DISTRO: [
# humble,
jazzy
]
ROS_REPO: [
# testing,
main
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ros-industrial/industrial_ci@master
env:
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
PIP_BREAK_SYSTEM_PACKAGES: 1 # required since python 3.12 for rosdep to work
DOWNSTREAM_WORKSPACE: "github:marcoesposito1988/easy_handeye2_demo#master"
7 changes: 7 additions & 0 deletions easy_handeye2/tests/test_calib.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@


def test_calib():
assert True

# def test_ci_handles_failure():
# assert False

0 comments on commit ed9df4d

Please sign in to comment.