mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 13:43:47 +08:00
Test framework changes so as not to require a postgres user with createdb privileges. Under TravisCI / AppVeyor a dedicated postgres user is setup. Squashed commit of pull request #1420.
28 lines
795 B
Plaintext
28 lines
795 B
Plaintext
# We provide biosql.ini.appveyor as an example preconfigured
|
|
# to work on the virtual machines used for automated testing
|
|
# at www.appveyor.com
|
|
#
|
|
# Please copy this to biosql.ini and edit it match your local
|
|
# system if you want to run the Biopython BioSQL tests locally
|
|
# yourself.
|
|
#
|
|
# To disable testing against any specific back-end, set dbuser
|
|
# to an empty string. There is no configuration entry needed
|
|
# for sqlite3.
|
|
|
|
[mysql]
|
|
# Covers DBDRIVER="MySQLdb" and "mysql.connector" etc
|
|
# Values match https://www.appveyor.com/docs/services-databases/
|
|
dbhost=localhost
|
|
dbuser=root
|
|
dbpasswd=Password12!
|
|
testdb=biosql_test
|
|
|
|
[pg]
|
|
# Covers DBDRIVER="psycopg2" etc
|
|
# The database and user below are created in .appveyor.yml
|
|
dbhost=localhost
|
|
dbuser=biosql_user
|
|
dbpasswd=biosql_pass
|
|
testdb=biosql_test
|