We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60eccec commit 3da7c5aCopy full SHA for 3da7c5a
.github/workflows/build.yml
@@ -48,6 +48,11 @@ jobs:
48
echo "Public IP Address:"
49
curl ifconfig.me # This will print the public IP address of the GitHub runner
50
51
+ - name: list python version and modules
52
+ run: |
53
+ python --version
54
+ pip list
55
+
56
- name: Run unittests
57
env:
58
SECRET_IO_KEY: ${{ secrets.CI_IO_KEY }}
tests/test_client.py
@@ -182,7 +182,6 @@ def test_time_data(self):
182
for time_data in server_time:
183
self.assertIsNotNone(time_data)
184
# Check that the week day was interpreted properly
185
- self.assertDictEqual(server_time,[])
186
adjusted_time = time.localtime(time.mktime(server_time))
187
self.assertEqual(server_time.tm_wday, adjusted_time.tm_wday)
188
0 commit comments