Skip to content

Commit e47cc35

Browse files
committed
updated for MySQL tests
1 parent 3b90369 commit e47cc35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
MYSQL_ALLOW_EMPTY_PASSWORD: yes
2121
healthcheck:
2222
test: ["CMD", "mysqladmin", "-uroot", "ping"]
23-
image: cs50/mysql:8
23+
image: cs50/mysql
2424
ports:
2525
- 3306:3306
2626
postgres:

Diff for: tests/sql.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def test_cte(self):
336336
if __name__ == "__main__":
337337
suite = unittest.TestSuite([
338338
unittest.TestLoader().loadTestsFromTestCase(SQLiteTests),
339-
#unittest.TestLoader().loadTestsFromTestCase(MySQLTests),
339+
unittest.TestLoader().loadTestsFromTestCase(MySQLTests),
340340
unittest.TestLoader().loadTestsFromTestCase(PostgresTests)
341341
])
342342

0 commit comments

Comments
 (0)