Skip to content

Commit

Permalink
Merge pull request #415 from macbre/ci/integration-tests
Browse files Browse the repository at this point in the history
CI - Update the list of MySQL containers
  • Loading branch information
macbre committed Sep 13, 2023
2 parents 104af65 + 7b95ae1 commit 1566779
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Expand Up @@ -23,10 +23,12 @@ jobs:
# https://hub.docker.com/_/mysql?tab=tags
- "mysql:5.7.32"
- "mysql:8.0.22"
- "mysql:8.1.0"
# https://hub.docker.com/_/mariadb?tab=tags
- "mariadb:10.1"
- "mariadb:10.2"
- "mariadb:10.5"
- "mariadb:10.6"
# https://hub.docker.com/_/percona?tab=tags
- "percona:8.0.22-13"

Expand Down
2 changes: 1 addition & 1 deletion indexdigest/test/core/test_database.py
Expand Up @@ -173,7 +173,7 @@ def test_get_table_columns(self):

self.assertEqual(columns[1].name, 'foo')
self.assertEqual(columns[1].type, 'varchar(16)')
self.assertEqual(columns[1].character_set, 'utf8')
self.assertIn(columns[1].character_set, ['utf8', 'utf8mb3'])

self.assertEqual(len(columns), 2)

Expand Down

0 comments on commit 1566779

Please sign in to comment.