File tree 5 files changed +14
-6
lines changed
contrib/runners/orquesta_runner/tests/unit
st2tests/integration/orquesta
5 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 16
16
to pants' use of PEX lockfiles. This is not a user-facing addition.
17
17
#5778 #5789 #5817 #5795 #5830 #5833 #5834 #5841 #5840 #5838 #5842 #5837 #5849 #5850
18
18
#5846 #5853 #5848 #5847 #5858 #5857 #5860 #5868 #5871 #5864 #5874 #5884 #5893 #5891
19
- #5890 #5898 #5901 #5906 #5899 #5907 #5909 #5922
19
+ #5890 #5898 #5901 #5906 #5899 #5907 #5909 #5922 #5926
20
20
Contributed by @cognifloyd
21
21
22
22
* Added a joint index to solve the problem of slow mongo queries for scheduled executions. #5805
Original file line number Diff line number Diff line change @@ -11,4 +11,6 @@ python_tests(
11
11
],
12
12
)
13
13
14
- python_sources ()
14
+ python_test_utils (
15
+ sources = ["*.py" , "!test_*.py" ],
16
+ )
Original file line number Diff line number Diff line change @@ -4,4 +4,6 @@ __defaults__(
4
4
)
5
5
)
6
6
7
- python_sources ()
7
+ python_test_utils (
8
+ sources = ["*.py" ],
9
+ )
Original file line number Diff line number Diff line change @@ -12,4 +12,6 @@ python_tests(
12
12
uses = ["mongo" , "rabbitmq" ],
13
13
)
14
14
15
- python_sources ()
15
+ python_test_utils (
16
+ sources = ["*.py" , "!test_*.py" ],
17
+ )
Original file line number Diff line number Diff line change 1
- python_sources ()
2
-
3
1
python_tests (
4
2
name = "tests" ,
5
3
uses = ["redis" ],
6
4
)
5
+
6
+ python_test_utils (
7
+ sources = ["*.py" , "!test_*.py" ],
8
+ )
You can’t perform that action at this time.
0 commit comments