Skip to content

Commit 02716fd

Browse files
committed
Tried to add testing
1 parent 54997ea commit 02716fd

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/maven-deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ jobs:
2424
- name: Build
2525
run: mvn -B package --file pom.xml
2626
env:
27-
MYSQL_HOST: 127.0.0.1
2827
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
29-
MYSQL_USER: test
28+
MYSQL_USERNAME: test
3029
MYSQL_PASSWORD: test
3130
- name: Deploy to JavaWebStack Repository
3231
run: mvn deploy -s build/settings.xml

src/test/java/org/javawebstack/orm/test/ORMTestCase.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ public abstract class ORMTestCase {
1616
String name = System.getenv("MYSQL_DATABASE");
1717
String user = System.getenv("MYSQL_USERNAME");
1818
String password = System.getenv("MYSQL_PASSWORD");
19-
System.out.println(host);
20-
System.out.println(port);
21-
System.out.println(name);
22-
System.out.println(user);
23-
System.out.println(password);
2419
sql = new MySQL(
2520
host != null ? host : "localhost",
2621
port != null ? Integer.parseInt(port) : 3306,

0 commit comments

Comments
 (0)