From f1fd7f38023d50f8586c548448c49cdc99ffd073 Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Sun, 31 Jan 2021 14:09:00 +0200 Subject: [PATCH] tweaked to run on linux --- .gitignore | 38 +++++++++++++++++++++++++++++++++++++- integration-test.sh | 0 2 files changed, 37 insertions(+), 1 deletion(-) mode change 100644 => 100755 integration-test.sh diff --git a/.gitignore b/.gitignore index b00581c..5b954e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,38 @@ /venv/ -/.idea/ \ No newline at end of file +/.idea/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo diff --git a/integration-test.sh b/integration-test.sh old mode 100644 new mode 100755