File tree Expand file tree Collapse file tree 4 files changed +38
-72
lines changed
java/org/utplsql/maven/plugin
resources/unit-tests/include_object Expand file tree Collapse file tree 4 files changed +38
-72
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ develop ]
8
8
9
9
workflow_dispatch :
10
+
11
+ repository_dispatch :
12
+ type : [utPLSQL-build]
10
13
11
14
jobs :
12
15
build :
74
77
if : always()
75
78
with :
76
79
files : target/**/TEST**.xml
80
+
81
+ slack-workflow-status :
82
+ if : always()
83
+ name : Post Workflow Status To Slack
84
+ needs : [ build ]
85
+ runs-on : ubuntu-latest
86
+ steps :
87
+ - name : Slack Workflow Notification
88
+ uses : Gamesight/slack-workflow-status@master
89
+ with :
90
+ # Required Input
91
+ repo_token : ${{secrets.GITHUB_TOKEN}}
92
+ slack_webhook_url : ${{secrets.SLACK_WEBHOOK_URL}}
93
+ # Optional Input
94
+ name : ' Github Actions[bot]'
95
+ icon_url : ' https://octodex.github.com/images/mona-the-rivetertocat.png'
Original file line number Diff line number Diff line change 56
56
MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
57
57
MAVEN_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
58
58
MAVEN_GPG_PASSPHRASE : ${{ secrets.MAVEN_GPG_PASSPHRASE }}
59
+
60
+ slack-workflow-status :
61
+ if : always()
62
+ name : Post Workflow Status To Slack
63
+ needs : [ build ]
64
+ runs-on : ubuntu-latest
65
+ steps :
66
+ - name : Slack Workflow Notification
67
+ uses : Gamesight/slack-workflow-status@master
68
+ with :
69
+ # Required Input
70
+ repo_token : ${{secrets.GITHUB_TOKEN}}
71
+ slack_webhook_url : ${{secrets.SLACK_WEBHOOK_URL}}
72
+ # Optional Input
73
+ name : ' Github Actions[bot]'
74
+ icon_url : ' https://octodex.github.com/images/mona-the-rivetertocat.png'
Original file line number Diff line number Diff line change @@ -306,11 +306,11 @@ public void db_config_using_system_properties() throws Exception {
306
306
}
307
307
308
308
/**
309
- * Exclude object from coverage report
309
+ * DB configuration from System Properties
310
310
* <p>
311
- * Given : a pom.xml with excludeObject set
311
+ * Given : a pom.xml without dbUrl, dbUser and dbPass configured
312
312
* When : pom is read
313
- * Then : excludeObject is present
313
+ * Then : System Properties must be used to configure database
314
314
*/
315
315
@ Test
316
316
public void exclude_object () throws Exception {
@@ -322,23 +322,6 @@ public void exclude_object() throws Exception {
322
322
assertEquals ("app.pkg_test_me,app.test_pkg_test_me" , utPlsqlMojo .excludeObject );
323
323
}
324
324
325
- /**
326
- * Include object from coverage report
327
- * <p>
328
- * Given : a pom.xml with includeObject set
329
- * When : pom is read
330
- * Then : includeObject is present
331
- */
332
- @ Test
333
- public void include_object () throws Exception {
334
- UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo ("include_object" );
335
- assertNotNull (utPlsqlMojo );
336
-
337
- utPlsqlMojo .execute ();
338
-
339
- assertEquals ("app.pkg_test_me,app.test_pkg_test_me" , utPlsqlMojo .includeObject );
340
- }
341
-
342
325
private UtPlsqlMojo createUtPlsqlMojo (String directory ) throws Exception {
343
326
return (UtPlsqlMojo ) rule .lookupConfiguredMojo (new File ("src/test/resources/unit-tests/" + directory ), "test" );
344
327
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments