Skip to content
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