Skip to content

Commit

Permalink
updated for MySQL tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dmalan committed Dec 18, 2023
1 parent 3b90369 commit e47cc35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
healthcheck:
test: ["CMD", "mysqladmin", "-uroot", "ping"]
image: cs50/mysql:8
image: cs50/mysql
ports:
- 3306:3306
postgres:
Expand Down
2 changes: 1 addition & 1 deletion tests/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def test_cte(self):
if __name__ == "__main__":
suite = unittest.TestSuite([
unittest.TestLoader().loadTestsFromTestCase(SQLiteTests),
#unittest.TestLoader().loadTestsFromTestCase(MySQLTests),
unittest.TestLoader().loadTestsFromTestCase(MySQLTests),
unittest.TestLoader().loadTestsFromTestCase(PostgresTests)
])

Expand Down

0 comments on commit e47cc35

Please sign in to comment.