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

Commit 8ba47c0

Browse files
committed
refactoring library.
1 parent de9e3f9 commit 8ba47c0

Some content is hidden

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

60 files changed

+2251
-895
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*.py]
7+
insert_final_newline = true
8+
9+
[*]
10+
indent_style = space
11+
indent_size = 4
12+
end_of_line = lf
13+
charset = utf-8
14+
trim_trailing_whitespace = true
15+
insert_final_newline = false

.github/workflows/build.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build Status
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.8'
18+
- name: Install Dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install tox coveralls
22+
- name: Run Tests
23+
run: |
24+
tox
25+
- name: Upload Coverage
26+
uses: codecov/codecov-action@v1
27+
with:
28+
token: ${{ secrets.CODECOV_TOKEN }}
29+
file: ./coverage.xml
30+
verbose: true

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Byte-compiled / optimized / DLL files
22
__pycache__/
33
*.py[cod]
4+
.pytest_cache/
5+
.mypy_cache/
46

57
# C extensions
68
*.so
@@ -60,3 +62,7 @@ venv/
6062
ENV/
6163
env.bak/
6264
venv.bak/
65+
66+
# Editors
67+
.vscode/
68+
.idea/

0 commit comments

Comments
 (0)