Skip to content

Commit

Permalink
SONARPY-1653 Include celery in the extended ruling test (#1710)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremi Do Dinh authored Feb 15, 2024
1 parent 7565113 commit 2c04bd1
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ void test_calibre() throws IOException {
executeBuild(build);
}

@Test
void test_celery() throws IOException {
SonarScanner build = buildWithCommonProperties("celery");
build.setProperty("sonar.sources", "celery");
build.setProperty("sonar.tests", "t");
executeBuild(build);
}

@Test
void test_chalice() throws IOException {
SonarScanner build = buildWithCommonProperties("chalice");
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
'celery:celery/concurrency/asynpool.py': [
399
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
'celery:celery/app/trace.py': [
632
],
'celery:celery/contrib/rdb.py': [
116
],
'celery:celery/events/cursesmon.py': [
249,
249
],
'celery:celery/events/state.py': [
547
],
'celery:celery/apps/multi.py': [
113
],
'celery:celery/bin/worker.py': [
298
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
'celery:celery/app/task.py': [
542
]
}

0 comments on commit 2c04bd1

Please sign in to comment.