Skip to content
This repository was archived by the owner on Jul 4, 2024. It is now read-only.

Commit 7d38f70

Browse files
JosXaJoscha Götzer
authored and
Joscha Götzer
committed
Initial commit
0 parents  commit 7d38f70

File tree

206 files changed

+21035
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+21035
-0
lines changed

.github/workflows/build.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
on:
2+
pull_request:
3+
branches:
4+
- master
5+
6+
name: Build Botkit
7+
jobs:
8+
flake8:
9+
name: flake8
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
- name: Install
14+
uses: abatilo/actions-poetry@master
15+
with:
16+
args: install
17+
- name: Run flake8
18+
uses: abatilo/actions-poetry@master
19+
with:
20+
args: run python -m flake8 --show-source --import-order-style pep8 typed_json_dataclass
21+
tests
22+
pytest:
23+
name: pytest
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@master
27+
- name: Install
28+
uses: abatilo/actions-poetry@master
29+
with:
30+
args: install
31+
- name: Run pytest
32+
uses: abatilo/actions-poetry@master
33+
with:
34+
args: run python -m pytest --cov-report xml:codecov.xml --cov=typed_json_dataclass
35+
--cov-report=html --junit-xml=coverage.xml --cov-branch --cov-fail-under=100
36+
tests/

.github/workflows/publish.yml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
on:
2+
release:
3+
types: [created]
4+
5+
name: Publish Botkit
6+
jobs:
7+
flake8:
8+
name: flake8
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
- name: Install
13+
uses: abatilo/actions-poetry@master
14+
with:
15+
args: install
16+
- name: Run flake8
17+
uses: abatilo/actions-poetry@master
18+
with:
19+
args: run python -m flake8 --show-source --import-order-style pep8 typed_json_dataclass
20+
tests
21+
pytest:
22+
name: pytest
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@master
26+
- name: Install
27+
uses: abatilo/actions-poetry@master
28+
with:
29+
args: install
30+
- name: Run pytest
31+
uses: abatilo/actions-poetry@master
32+
with:
33+
args: run python -m pytest --cov-report xml:codecov.xml --cov=typed_json_dataclass
34+
--cov-report=html --junit-xml=coverage.xml --cov-branch --cov-fail-under=100
35+
tests/
36+
publish:
37+
name: publish
38+
runs-on: ubuntu-latest
39+
needs: [flake8, pytest]
40+
steps:
41+
- uses: actions/checkout@master
42+
- name: Install
43+
uses: abatilo/actions-poetry@master
44+
with:
45+
args: install
46+
- name: Upload codecov
47+
uses: abatilo/actions-poetry@master
48+
env:
49+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
50+
with:
51+
args: '"run codecov -t $CODECOV_TOKEN"'
52+
- name: Publish
53+
uses: abatilo/actions-poetry@master
54+
env:
55+
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
56+
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
57+
with:
58+
args: publish --build --no-interaction -vv --username $PYPI_USERNAME --password
59+
$PYPI_PASSWORD

.gitignore

+119
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
.pytest_cache/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
db.sqlite3
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# Jupyter Notebook
76+
.ipynb_checkpoints
77+
78+
# IPython
79+
profile_default/
80+
ipython_config.py
81+
82+
# pyenv
83+
.python-version
84+
85+
# celery beat schedule file
86+
celerybeat-schedule
87+
88+
# SageMath parsed files
89+
*.sage.py
90+
91+
# Environments
92+
.env
93+
.venv
94+
env/
95+
venv/
96+
ENV/
97+
env.bak/
98+
venv.bak/
99+
100+
# Spyder project settings
101+
.spyderproject
102+
.spyproject
103+
104+
# Rope project settings
105+
.ropeproject
106+
107+
# mkdocs documentation
108+
/site
109+
110+
# mypy
111+
.mypy_cache/
112+
.dmypy.json
113+
dmypy.json
114+
115+
# Pyre type checker
116+
.pyre/
117+
.idea/botcommons.iml
118+
.idea/inspectionProfiles/profiles_settings.xml
119+
/.idea/botkit.iml

.gitlab-ci.yml

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
# Global --------------------------
2+
3+
variables:
4+
PIP_CACHE_DIR: "${CI_PROJECT_DIR}/.cache/pip"
5+
6+
cache:
7+
key: "${CI_JOB_NAME}"
8+
paths:
9+
- .cache/pip
10+
- .venv
11+
12+
stages:
13+
- quality
14+
- tests
15+
16+
# Jobs templates ------------------
17+
18+
.install-deps-template: &install-deps
19+
before_script:
20+
- pip install poetry
21+
- poetry --version
22+
- poetry config settings.virtualenvs.in-project true
23+
- poetry install -vv
24+
25+
.quality-template: &quality
26+
<<: *install-deps
27+
image: python:3.6
28+
stage: quality
29+
30+
.test-template: &test
31+
<<: *install-deps
32+
stage: tests
33+
coverage: '/TOTAL.*\s(\d+\.\d+\%)/'
34+
script: make test
35+
artifacts:
36+
paths:
37+
- tests/logs
38+
when: always
39+
expire_in: 1 week
40+
41+
# Quality jobs ----------------------
42+
43+
check-bandit:
44+
<<: *quality
45+
script: make check-bandit
46+
47+
check-black:
48+
<<: *quality
49+
script: make check-black
50+
51+
check-flake8:
52+
<<: *quality
53+
script: make check-flake8
54+
55+
check-isort:
56+
<<: *quality
57+
script: make check-isort
58+
59+
check-safety:
60+
<<: *quality
61+
script: make check-safety
62+
63+
# Tests jobs ------------------------
64+
65+
python3.6:
66+
<<: *test
67+
image: python:3.6
68+
69+
python3.7:
70+
<<: *test
71+
image: python:3.7
72+
73+
python3.8:
74+
<<: *test
75+
image: python:3.8
76+
77+
78+
image: "python:3.7"
79+
80+
before_script:
81+
- python --version
82+
- pip install -r requirements.txt
83+
84+
stages:
85+
- Static Analysis
86+
- Test
87+
88+
mypy:
89+
stage: Static Analysis
90+
script:
91+
- pwd
92+
- ls -l
93+
- python -m mypy bild/file.py
94+
- python -m mypy bild/directory.py
95+
96+
flake8:
97+
stage: Static Analysis
98+
script:
99+
- flake8 --max-line-length=120 bild/*.py
100+
101+
pylint:
102+
stage: Static Analysis
103+
allow_failure: true
104+
script:
105+
- pylint -d C0301 bild/*.py
106+
107+
unit_test:
108+
stage: Test
109+
script:
110+
- pwd
111+
- ls -l
112+
- export PYTHONPATH="$PYTHONPATH:."
113+
- python -c "import sys;print(sys.path)"
114+
- pytest

0 commit comments

Comments
 (0)