Skip to content

Commit 4814a90

Browse files
committed
Remove field test fixture from old package
1 parent 0c76a39 commit 4814a90

7 files changed

Lines changed: 7 additions & 463 deletions

File tree

src/software/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ py_library(
125125
name = "conftest",
126126
srcs = ["conftest.py"],
127127
deps = [
128-
"//software/field_tests:field_test_fixture",
129128
"//software/gameplay_tests:fixture",
130129
],
131130
)

src/software/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import pytest # noqa: F401
2-
from software.field_tests.field_test_fixture import field_test_runner # noqa: F401
32
from software.gameplay_tests.fixture import gameplay_test_runner # noqa: F401
43

54
# Pytest requires that all tests fixtures shared across a package be defined

src/software/field_tests/BUILD

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,6 @@ load("@gameplay_tests_deps//:requirements.bzl", "requirement")
22

33
package(default_visibility = ["//visibility:public"])
44

5-
py_library(
6-
name = "field_test_fixture",
7-
srcs = [
8-
"field_test_fixture.py",
9-
],
10-
data = [
11-
"//software:py_constants.so",
12-
],
13-
deps = [
14-
"//proto:import_all_protos",
15-
"//software/gameplay_tests:tbots_test_runner",
16-
"//software/gameplay_tests/validation:validations",
17-
"//software/logger:py_logger",
18-
"//software/networking/unix:threaded_unix_listener_py",
19-
"//software/networking/unix:threaded_unix_sender_py",
20-
"//software/thunderscope",
21-
"//software/thunderscope:constants",
22-
"//software/thunderscope:estop_helpers",
23-
"//software/thunderscope:robot_communication",
24-
"//software/thunderscope/binary_context_managers:full_system",
25-
"//software/thunderscope/binary_context_managers:game_controller",
26-
"//software/thunderscope/binary_context_managers:simulator",
27-
],
28-
)
29-
305
py_test(
316
name = "movement_robot_field_test",
327
srcs = [
@@ -55,7 +30,7 @@ py_test(
5530
],
5631
deps = [
5732
"//software:conftest",
58-
"//software/gameplay_tests:tbots_test_runner",
33+
"//software/gameplay_tests:util",
5934
"//software/gameplay_tests/validation:validations",
6035
requirement("pytest"),
6136
],
@@ -68,6 +43,7 @@ py_test(
6843
],
6944
deps = [
7045
"//software:conftest",
46+
"//software/gameplay_tests:util",
7147
"//software/gameplay_tests/validation:validations",
7248
requirement("pytest"),
7349
],

0 commit comments

Comments
 (0)