Files @ fe8dc0049e18
Branch filter:

Location: gimmecert/.gitignore

branko
GC-28: Added initial set-up for running tests within Vagrant machine:

- Added Vagrantfile that deploys Debian 9 Stretch and provisions it.
- Added provisioning script that will set-up multiple Python versions.
- Updated development instructions to include information on how to
use Vagrant to run all the tests.
- Ignore Vagrant artifacts in gitignore.
# Ignore IDE and backup files.
*~
.#*

# Ignore build artefacts.
docs/_build/
dist/
build/

# Ignore Python artefacts.
.eggs/
.pytest_cache/
__pycache__/
*.egg-info/
*.pyc

# Ignore test artefacts.
.coverage
.coverage.*
coverage/
.tox/

# Ignore project temporary directory.
tmp/

# Ignore Vagrant artifacts.
.vagrant