From 586d16712fde8fb65c2cd63d5c141876f81c49ed Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 3 Aug 2020 14:17:17 -0700 Subject: [PATCH] NuWeather: add CI tests for Weatherstack and Openweathermap --- NuWeather/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NuWeather/test.py b/NuWeather/test.py index 5cbf67a..49c66f6 100644 --- a/NuWeather/test.py +++ b/NuWeather/test.py @@ -75,11 +75,11 @@ class NuWeatherDarkSkyTestCase(PluginTestCase): self.assertNotError('setweather Berlin') self.assertRegexp('weather', 'Berlin') -# TODO: set up Weatherstack in CI -''' class NuWeatherWeatherstackTestCase(NuWeatherDarkSkyTestCase): # inherit settings from above BACKEND = 'weatherstack' -''' + +class NuWeatherOpenWeatherMapTestCase(NuWeatherDarkSkyTestCase): + BACKEND = 'openweathermap' # FIXME: test geocode backends