mirror of
https://github.com/c0de-archive/django-gallery.git
synced 2024-12-22 10:12:41 +00:00
51a117ca5f
CircleCI's free service only allows running 1 container at a time. This causes problems if I want to use a database. A workaround that I found seems to work by running the database server directly within the test container. This does increase test time however
3 lines
128 B
SQL
3 lines
128 B
SQL
CREATE USER imagehost WITH SUPERUSER CREATEDB LOGIN PASSWORD 'totallyHacked1337';
|
|
CREATE DATABASE imagehost_db OWNER imagehost;
|