Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Initial release - works on my cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
Henning Häcker committed Jun 26, 2019
0 parents commit c3eafba
Show file tree
Hide file tree
Showing 59 changed files with 5,095 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .coveragerc to control coverage.py
[run]
branch = True
source = illuminatio
# omit = bad_file.py

[paths]
source =
src/
*/site-packages/

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover

# Don't complain about missing debug-only code:
def __repr__
if self\.debug

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError

# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
41 changes: 41 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
.dockerignore

db.sqlite3
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env
pip-log.txt
pip-delete-this-directory.txt
.tox
.coverage
.coverage.*
.cache
coverage.xml
*,cover
*.log
tmp
build
.eggs
.pytest_cache
docs
helper_scripts
dist
.vscode
resource
tests
config
# *.sh
.DS_Store
.gitignore
.coveragerc
.venv
*.md
.pylintrc
.gitlab-ci.yml
LICENSE
local_dev
scripts
*.dockerfile
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Temporary and binary files
*~
*.py[cod]
*.so
*.cfg
!setup.cfg
*.orig
*.log
*.pot
__pycache__/*
.cache/*
.*.swp
*/.ipynb_checkpoints/*
.DS_Store
/tmp

# Project k8s config
config

# Project files
.ropeproject
.project
.pydevproject
.settings
.idea
.vscode
.venv

# Package files
*.egg
*.eggs/
.installed.cfg
*.egg-info

# Unittest and coverage
.pytest_cache
htmlcov/*
.coverage
.tox
junit.xml
coverage.xml

# Build and docs folder/files
build/*
dist/*
sdist/*
docs/api/*
docs/_build/*
cover/*
MANIFEST
Loading

0 comments on commit c3eafba

Please sign in to comment.