Skip to content

Commit 67b85f6

Browse files
author
jiachengzhuo
committed
Initial commit
0 parents  commit 67b85f6

23 files changed

+3316
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on: [push]
2+
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
9+
- name: Set up Python 3.x
10+
uses: actions/setup-python@v2
11+
with:
12+
python-version: '3.x'
13+
14+
- name: Install Poetry
15+
run: |
16+
curl -sSL https://install.python-poetry.org | python3 -
17+
18+
- name: Install dependencies using Poetry
19+
run: |
20+
poetry install
21+
22+
- name: Run tests with pytest using Poetry
23+
run: |
24+
poetry run pytest tests

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# Pytest
28+
.cache/
29+
.pytest_cache/
30+
31+
# Pyenv
32+
.python-version
33+
34+
# Poetry
35+
.poetry-env/
36+
37+
# IDEs and editors
38+
.idea/
39+
.vscode/
40+
*.swp

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Python Package Demo

docs/index.html

Lines changed: 223 additions & 0 deletions
Large diffs are not rendered by default.

docs/search.js

Lines changed: 46 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/src.html

Lines changed: 245 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/bye_app.html

Lines changed: 242 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/bye_app/bye_main.html

Lines changed: 269 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/hello_app.html

Lines changed: 242 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/hello_app/hello_main.html

Lines changed: 284 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)