master
Anton Romanov 1 year ago
commit f168f0747c

125
.gitignore vendored

@ -0,0 +1,125 @@
# Editors
.vscode/
.idea/
# Vagrant
.vagrant/
# Mac/OSX
.DS_Store
# Windows
Thumbs.db
# Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json

@ -0,0 +1,17 @@
"Features count by week"
3
5
6
9
16
16
16
25
29
42
42
50
54
58
59
60
1 Features count by week
2 3
3 5
4 6
5 9
6 16
7 16
8 16
9 25
10 29
11 42
12 42
13 50
14 54
15 58
16 59
17 60

@ -0,0 +1,17 @@
"Testing time by week"
2.5
2.833333333
2.966666667
3.066666667
4.383333333
6.466666667
5.416666667
5.433333333
5.583333333
5.683333333
5.15
5.633333333
6.033333333
12.86666667
6.783333333
4.1
1 Testing time by week
2 2.5
3 2.833333333
4 2.966666667
5 3.066666667
6 4.383333333
7 6.466666667
8 5.416666667
9 5.433333333
10 5.583333333
11 5.683333333
12 5.15
13 5.633333333
14 6.033333333
15 12.86666667
16 6.783333333
17 4.1

@ -0,0 +1,4 @@
i = 0
if i == 0:
i = i + 1
print("This line will be printed. " + str(i))
Loading…
Cancel
Save