Skip to content

vitalii-komenda/gha-workshop

Repository files navigation

GH Actions workshop

Creating and using a venv

python3 -m venv .venv

source .venv/bin/activate

Starting the database locally

docker-compose up -d tasks_db

Creating a test database

docker exec -ti tasks_db /usr/local/bin/psql -U postgres

CREATE USER tests WITH PASSWORD 'tests';
CREATE DATABASE tasks_test WITH OWNER tests;

Running the tests

python -m unittest discover -s tests -p 'test_*.py'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages