diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index d6d7d8055d49..1cf4d837b57f 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -130,9 +130,7 @@ jobs: matrix: arg: [ "BASIC_TESTS", - "CREATE_AND_DESTROY_TEST", "PLANET_GEN_TEST", - "RUIN_PLACEMENT_TEST", "SHIP_PLACEMENT_TEST" ] uses: ./.github/workflows/run_integration_tests.yml diff --git a/code/_compile_options.dm b/code/_compile_options.dm index ee7638ea853d..f966fd1837d4 100644 --- a/code/_compile_options.dm +++ b/code/_compile_options.dm @@ -81,9 +81,7 @@ #ifdef ALL_TESTS #define BASIC_TESTS -#define CREATE_AND_DESTROY_TEST #define PLANET_GEN_TEST -#define RUIN_PLACEMENT_TEST #define SHIP_PLACEMENT_TEST #endif diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index db5126554325..5ac2aac05175 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -112,23 +112,18 @@ #include "teleporters.dm" #include "timer_sanity.dm" +#include "create_and_destroy.dm" + #ifdef REFERENCE_TRACKING_DEBUG //Don't try and parse this file if ref tracking isn't turned on. IE: don't parse ref tracking please mr linter #include "find_reference_sanity.dm" #endif #endif //BASIC_TESTS -#ifdef CREATE_AND_DESTROY_TEST -#include "create_and_destroy.dm" -#endif //CREATE_AND_DESTROY_TEST - #ifdef PLANET_GEN_TEST #include "planet_gen.dm" -#endif //PLANET_GEN - -#ifdef RUIN_PLACEMENT_TEST #include "ruin_placement.dm" -#endif //RUIN_PLACEMENT_TEST +#endif //PLANET_GEN #ifdef SHIP_PLACEMENT_TEST #include "ship_outpost_placement.dm"