File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
st2common/tests/integration
st2stream/tests/unit/controllers/v1 Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 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
19
#5890 #5898 #5901 #5906 #5899 #5907 #5909 #5922 #5926 #5927 #5925 #5928 #5929 #5930
20
+ #5931
20
21
Contributed by @cognifloyd
21
22
22
23
* 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 @@ -9,9 +9,9 @@ st2_component_python_distribution(
9
9
],
10
10
dependencies = [
11
11
# policies get wired up by metadata in st2common/st2common/policies/meta/*.yaml
12
- "st2actions/policies" ,
12
+ "./ st2actions/policies" ,
13
13
# backwards compat API:
14
14
# st2actions.runners.pythonrunner.Action moved to st2common.runners.base_action.Action
15
- "st2actions/runners/pythonrunner.py" ,
15
+ "./ st2actions/runners/pythonrunner.py" ,
16
16
],
17
17
)
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 @@ -3,8 +3,6 @@ __defaults__(
3
3
extend = True ,
4
4
)
5
5
6
- python_sources ()
7
-
8
6
python_tests (
9
7
name = "tests" ,
10
8
dependencies = [
@@ -13,3 +11,7 @@ python_tests(
13
11
"conf/st2.tests1.conf:st2_tests_conf" ,
14
12
],
15
13
)
14
+
15
+ python_test_utils (
16
+ sources = ["*.py" , "!test_*.py" ],
17
+ )
Original file line number Diff line number Diff line change @@ -2,4 +2,6 @@ python_tests(
2
2
name = "tests" ,
3
3
)
4
4
5
- python_sources ()
5
+ python_test_utils (
6
+ sources = ["*.py" , "!test_*.py" ],
7
+ )
You can’t perform that action at this time.
0 commit comments