Skip to content

Commit 1566779

Browse files
authored
Merge pull request #415 from macbre/ci/integration-tests
CI - Update the list of MySQL containers
2 parents 104af65 + 7b95ae1 commit 1566779

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ jobs:
2323
# https://hub.docker.com/_/mysql?tab=tags
2424
- "mysql:5.7.32"
2525
- "mysql:8.0.22"
26+
- "mysql:8.1.0"
2627
# https://hub.docker.com/_/mariadb?tab=tags
2728
- "mariadb:10.1"
2829
- "mariadb:10.2"
2930
- "mariadb:10.5"
31+
- "mariadb:10.6"
3032
# https://hub.docker.com/_/percona?tab=tags
3133
- "percona:8.0.22-13"
3234

indexdigest/test/core/test_database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def test_get_table_columns(self):
173173

174174
self.assertEqual(columns[1].name, 'foo')
175175
self.assertEqual(columns[1].type, 'varchar(16)')
176-
self.assertEqual(columns[1].character_set, 'utf8')
176+
self.assertIn(columns[1].character_set, ['utf8', 'utf8mb3'])
177177

178178
self.assertEqual(len(columns), 2)
179179

0 commit comments

Comments
 (0)