Prepare Jenkins stuff

This commit is contained in:
2020-10-18 20:50:00 +02:00
parent 1b28d37778
commit 9c10c2009c
24 changed files with 17 additions and 12 deletions
@@ -9,20 +9,20 @@ public class APIFootballUpdaterTest {
@Test
public void updateFixturesTest() throws IOException {
APIFootballUpdater updater = new APIFootballUpdater(2021);
updater.updateFixtures(2743);
// updater.updateFixtures(2743);
}
@Test
public void updateAllFixturesTest() throws IOException {
APIFootballUpdater updater = new APIFootballUpdater(2021);
updater.updateAllFixtures("Tippliga.json");
updater.updateAllFixtures("WTL_Pokal.json");
// updater.updateAllFixtures("Tippliga.json");
// updater.updateAllFixtures("WTL_Pokal.json");
}
@Test
public void updateAllRoundsTest() throws IOException {
APIFootballUpdater updater = new APIFootballUpdater(2021);
updater.updateAllRounds("Tippliga.json");
updater.updateAllRounds("WTL_Pokal.json");
// updater.updateAllRounds("Tippliga.json");
// updater.updateAllRounds("WTL_Pokal.json");
}
}