mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-22 17:18:40 +01:00
Failing test + change to runTests
This commit is contained in:
parent
0b19adcc74
commit
c152817aa1
@ -12,13 +12,6 @@ allprojects {
|
||||
|
||||
group "com.djrapitops"
|
||||
version "4.6.0-SNAPSHOT"
|
||||
|
||||
test {
|
||||
testLogging {
|
||||
events "passed", "failed"
|
||||
exceptionFormat "full"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
subprojects {
|
||||
|
@ -31,6 +31,11 @@ public class SessionCacheTest {
|
||||
SessionCache.clear();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void failingTest() {
|
||||
assertTrue(false);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAtomity() {
|
||||
Optional<Session> cachedSession = SessionCache.getCachedSession(uuid);
|
||||
|
@ -5,5 +5,6 @@ if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
||||
gradle test
|
||||
gradle sonarqube
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user