From f168f0747c7c9b09b284cc7bfce564a4533633b5 Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Fri, 28 Apr 2023 11:48:46 +0400 Subject: [PATCH] initial --- .gitignore | 125 +++++++++++++++++++++++++++++++++++++++ files/Features count.csv | 17 ++++++ files/Testing time.csv | 17 ++++++ main.py | 4 ++ 4 files changed, 163 insertions(+) create mode 100644 .gitignore create mode 100644 files/Features count.csv create mode 100644 files/Testing time.csv create mode 100644 main.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e37603 --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/files/Features count.csv b/files/Features count.csv new file mode 100644 index 0000000..7e9c5b8 --- /dev/null +++ b/files/Features count.csv @@ -0,0 +1,17 @@ +"Features count by week" +3 +5 +6 +9 +16 +16 +16 +25 +29 +42 +42 +50 +54 +58 +59 +60 \ No newline at end of file diff --git a/files/Testing time.csv b/files/Testing time.csv new file mode 100644 index 0000000..e9c44df --- /dev/null +++ b/files/Testing time.csv @@ -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 \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..aafcad4 --- /dev/null +++ b/main.py @@ -0,0 +1,4 @@ +i = 0 +if i == 0: + i = i + 1 + print("This line will be printed. " + str(i))