Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable tests on macOS sim #164

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions tests/test_ctre.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import ctre
import sys
import pytest


@pytest.mark.skipif(sys.platform == "darwin", reason="OSX CI failure")
def test_wpi_talonsrx():
m = ctre.WPI_TalonSRX(0)
m.setNeutralMode(ctre.NeutralMode.Brake)
Expand All @@ -12,7 +9,6 @@ def test_wpi_talonsrx():
del m


@pytest.mark.skipif(sys.platform == "darwin", reason="OSX CI failure")
def test_wpi_talonfx():
m = ctre.WPI_TalonFX(1)
m.setNeutralMode(ctre.NeutralMode.Brake)
Expand All @@ -21,7 +17,6 @@ def test_wpi_talonfx():
del m


@pytest.mark.skipif(sys.platform == "darwin", reason="OSX CI failure")
def test_wpi_victorspx():
m = ctre.WPI_VictorSPX(2)
m.setNeutralMode(ctre.NeutralMode.Brake)
Expand All @@ -30,7 +25,6 @@ def test_wpi_victorspx():
del m


@pytest.mark.skipif(sys.platform == "darwin", reason="OSX CI failure")
def test_follow():
m1 = ctre.WPI_TalonFX(3)
m2 = ctre.WPI_TalonFX(4)
Expand Down