File tree Expand file tree Collapse file tree 5 files changed +49
-0
lines changed Expand file tree Collapse file tree 5 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ __pycache__
2+ * .secret. *
3+ * .vim
4+ * .sw *
5+ env
6+ .venv
7+ .vscode
8+ pylintrc
9+ .cache
10+ Pipfile.lock
Original file line number Diff line number Diff line change 1+ [[source ]]
2+ name = " pypi"
3+ url = " https://pypi.org/simple"
4+ verify_ssl = true
5+
6+ [dev-packages ]
7+ pytest = " *"
8+ pipfile-requirements = " *"
9+ pylint = " *"
10+
11+ [packages ]
12+
13+ [requires ]
14+ python_version = " 3.6"
Original file line number Diff line number Diff line change 11# python-scuttle
22Python wrapper around SCUTTLE API.
3+
4+ ## Installation
5+
6+ ## Usage
7+
8+ ## Testing
9+
10+ Install [ Pipenv] ( https://pypi.org/project/pipenv/ ) and install development
11+ dependencies:
12+
13+ ``` shell
14+ pipenv install --dev
15+ ```
16+
17+ Run tests in pipenv environment:
18+
19+ ``` shell
20+ pipenv run pytest
21+ ```
22+
23+ Tests require a SCUTTLE API key with full permissions. This key should be the
24+ contents of ` token.secret.txt ` which is to be placed in the test directory. Do
25+ make sure it's in the gitignore.
Original file line number Diff line number Diff line change 1+ [pytest]
2+ testpaths = test/
You can’t perform that action at this time.
0 commit comments