diff --git a/.gitignore b/.gitignore index 942e6c8..bb5779c 100644 --- a/.gitignore +++ b/.gitignore @@ -101,3 +101,4 @@ ENV/ .mypy_cache/ db.sqlite3 +.wercker diff --git a/wercker.yml b/wercker.yml new file mode 100644 index 0000000..7baded9 --- /dev/null +++ b/wercker.yml @@ -0,0 +1,23 @@ +box: python:3.6.1 +# http://devcenter.wercker.com/docs/services/index.html +# services: + # - postgres + # http://devcenter.wercker.com/docs/services/postgresql.html +build: + steps: + - virtualenv: + name: setup virtual environment + python_location: /usr/local/bin/python3.6 + install_wheel: false # Enable wheel to speed up builds (experimental) + + - pip-install: + requirements_file: "requirements/common.txt" + + # - pip-install: + # clean_wheel_dir: true + + - script: + name: echo python information + code: | + echo "python version $(python --version) running" + echo "pip version $(pip --version) running"