Skip to content

Commit 3da7c5a

Browse files
committed
More logging and stop logging time struct
1 parent 60eccec commit 3da7c5a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ jobs:
4848
echo "Public IP Address:"
4949
curl ifconfig.me # This will print the public IP address of the GitHub runner
5050
51+
- name: list python version and modules
52+
run: |
53+
python --version
54+
pip list
55+
5156
- name: Run unittests
5257
env:
5358
SECRET_IO_KEY: ${{ secrets.CI_IO_KEY }}

tests/test_client.py

-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ def test_time_data(self):
182182
for time_data in server_time:
183183
self.assertIsNotNone(time_data)
184184
# Check that the week day was interpreted properly
185-
self.assertDictEqual(server_time,[])
186185
adjusted_time = time.localtime(time.mktime(server_time))
187186
self.assertEqual(server_time.tm_wday, adjusted_time.tm_wday)
188187

0 commit comments

Comments
 (0)