Skip to content

Commit 01df198

Browse files
authored
Initial development (#3)
1 parent 2b8ab53 commit 01df198

Some content is hidden

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

56 files changed

+17764
-93
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
docker:
99
- image: cimg/python:3.10.0
1010
environment:
11+
AWS_DEFAULT_REGION: eu-west-2
1112
PIPENV_VENV_IN_PROJECT: true
1213
resource_class: medium
1314
steps:
@@ -22,12 +23,11 @@ jobs:
2223
key: pipenv-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
2324
paths:
2425
- .venv
25-
- run: pipenv run ./lint.sh
26-
- run: pipenv run pytest
26+
- run: pipenv run ./build.sh
2727
- codecov/upload:
2828
file: coverage.xml
29-
- run: pipenv run ./build.sh
3029
- run: pip install dist/*
30+
- run: ./test-cli.sh
3131
- run: if [[ -z "${CIRCLE_TAG}" ]]; then circleci-agent step halt; fi
3232
- run: pipenv run twine upload dist/*
3333

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: cariad

.github/workflows/codeql-analysis.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CodeQL
2+
3+
on: # yamllint disable-line rule:truthy
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
schedule:
11+
- cron: "16 11 * * 6"
12+
13+
jobs:
14+
analyze:
15+
name: Analyze
16+
runs-on: ubuntu-latest
17+
permissions:
18+
actions: read
19+
contents: read
20+
security-events: write
21+
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
language:
26+
- python
27+
28+
steps:
29+
- name: Checkout repository
30+
uses: actions/checkout@v2
31+
32+
- name: Initialize CodeQL
33+
uses: github/codeql-action/init@v1
34+
with:
35+
languages: ${{ matrix.language }}
36+
37+
- name: Perform CodeQL Analysis
38+
uses: github/codeql-action/analyze@v1

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.coverage
2+
__pycache__
23
coverage.xml
34
dist
5+
docsrc/build
46
htmlcov
57
stackdiff.egg-info

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"cSpell.words": [
33
"epilog",
4+
"pyyaml",
45
"stackdiff"
5-
]
6+
],
7+
"restructuredtext.confPath": "${workspaceFolder}/docsrc/source"
68
}

Pipfile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,27 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
ansiscape = "~=1.0"
7+
ansiscape = "~=1.1.0"
88
boto3 = "~=1.18"
9-
differently = "==1.0.0a6"
9+
differently = "~=1.0"
10+
pyyaml = "~=6.0"
1011
tabulate = "~=0.8"
1112

1213
[dev-packages]
1314
black = "==21.9b0"
1415
boto3-stubs = {extras = ["cloudformation"], version = "*"}
1516
flake8 = "*"
17+
furo = "*"
1618
isort = "*"
19+
mock = "*"
1720
mypy = "*"
1821
pytest = "*"
1922
pytest-cov = "*"
23+
shellcheck-py = "*"
24+
sphinx = "*"
2025
twine = "*"
26+
types-mock = "*"
2127
types-tabulate = "~=0.8"
22-
shellcheck-py = "*"
2328
yamllint = "*"
2429

2530
[requires]

0 commit comments

Comments
 (0)