You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Nathan Bergey 5d03e883ec Test 1: Simple join with a count and group 2 years ago
docs misc: Add SQL practices 5 years ago
env misc: Use python and test with docker 5 years ago
sql misc: Add SQL practices 5 years ago
test Test 1: Simple join with a count and group 2 years ago
.gitignore misc: Use python and test with docker 5 years ago
Pipfile misc: Upgrade python & postgres version 3 years ago
Pipfile.lock build(deps): bump py from 1.9.0 to 1.10.0 3 years ago
README.md Test 1: Simple join with a count and group 2 years ago
docker-compose.yml misc: Upgrade python & postgres version 3 years ago

README.md

SQL test

Nathan's SQL answers. Tests past in test/test_example.py

Prerequisistes

$ python3 -m pip install pipenv --user
  • Use virtualenv
$ PIPENV_VENV_IN_PROJECT=true pipenv shell
  • Install dependencies
$ pipenv install --dev

Usage

  • Run up Postgresql server
$ docker-compose up db
  • Stop Postgresql server
$ docker-compose down
  • Connect to test database on Postgresql server using psql
$ docker-compose exec db psql -U postgres test
  • Execute SQL file
$ docker-compose exec db psql -v ON_ERROR_STOP=1 -U postgres test -a -f "sql/schema.sql"
  • Testing using database
$ docker-compose up dbtest