Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update database host #831

Merged
merged 1 commit into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion invisible_cities/database/db_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def connect_sqlite(dbfile):

@mark.skip(reason='server timeouts cause too many spurious test failures')
def connect_mysql(dbname):
conn_mysql = pymysql.connect(host="neutrinos1.ific.uv.es",
conn_mysql = pymysql.connect(host="next.ific.uv.es",
user='nextreader',passwd='readonly', db=dbname)
cursor_mysql = conn_mysql .cursor()
return connect_mysql, cursor_mysql
4 changes: 2 additions & 2 deletions invisible_cities/database/download_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_create_table_sqlite(dbname, output_tmpdir):
table = 'PmtBlr'

connSqlite = sqlite3.connect(dbfile)
connMySql = pymysql.connect(host="neutrinos1.ific.uv.es",
connMySql = pymysql.connect(host="next.ific.uv.es",
user='nextreader',passwd='readonly', db=dbname)

cursorMySql = connMySql .cursor()
Expand All @@ -41,7 +41,7 @@ def test_table_assignment(dbname):

@mark.parametrize('dbname', db.dbnames)
def test_tables_exist(dbname):
connMySql = pymysql.connect(host="neutrinos1.ific.uv.es",
connMySql = pymysql.connect(host="next.ific.uv.es",
user='nextreader',passwd='readonly', db=dbname)

cursor = connMySql.cursor()
Expand Down