Skip to content

Commit 12faafa

Browse files
committed
Fix tests.
Use only test properties to avoid local config interference. See #21
1 parent aa5eff3 commit 12faafa

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/test/java/org/springframework/data/release/AbstractIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
/**
2222
* @author Oliver Gierke
2323
*/
24-
@ActiveProfiles({ "local", "test" })
24+
@ActiveProfiles({ "test" })
2525
@SpringBootTest(classes = Application.class)
2626
public abstract class AbstractIntegrationTests {}

src/test/resources/application-test.properties

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ logging.level.org.springframework.web.client=TRACE
55
logging.level.org.springframework.http=DEBUG
66
# Deployment
77
deployment.repository-prefix=test-
8+
deployment.api-key=foo
89
maven.parallelize=false
9-
jira.username=dummy
10-
jira.password=dummy
11-
jira.api-url=http://localhost:8888
10+
# Git
1211
git.username=dummy
13-
git.passphrase=dummy
12+
git.password=dummy
1413
1514
git.author=dummy
1615
github.api-url=http://localhost:8888
16+
#Sagan
17+
sagan.key=foo

0 commit comments

Comments
 (0)