Python client for Deform.io
Project description
Python client for [Deform.io](https://deform.io)
## Tests
Install tox:
$ pip install tox
For running tests you need to provide all required ENV variables. For example next command will fail:
$ tox ValueError: You should provide “DEFORM_HOST” environ for settings
You can send variables with command:
$ DEFORM_HOST=‘“deform.chib.me”’ tox
The more convenient way would be to create a .test_config file a save data there. This file is ignored by git and won’t be commeted.
$ cat .test_config DEFORM_HOST=‘“deform.chib.me”’ DEFORM_EMAIL=’”email@example.ru”’ DEFORM_PASSWORD=‘“hello”’ …
You can run tests with config from file like this:
$ eval $(cat .test_config) tox
All config values must be specified with JSON types.
Running tests just for one environment:
$ eval $(cat .test_config) tox -e py3
Running tests from directory:
$ eval $(cat .test_config) tox -e py3 – tests.unit.client
Running the specific test case:
$ eval $(cat .test_config) tox -e py3 – tests.unit.client.tests:ClientTest__login
Documentation is generated by [http://www.mkdocs.org/](http://www.mkdocs.org/)
$ pip install -r docs_requirements.txt $ mkdocs serve
## Publishing new releases
Increment version in pydeform/__init__.py. For example:
__version__ = ‘0.0.2’ # from 0.0.1
Run tests.
Commit changes with message “Version 0.0.2”
Publish to pypi:
$ python setup.py publish
Add new tag version for commit:
$ git tag 0.0.2
Push to master with tags:
$ git push origin master –tags
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-deform-0.0.1.tar.gz
.
File metadata
- Download URL: python-deform-0.0.1.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ed92eaa1cec309beb33bd1b85c395015f72076d7c01b8272c32ce744dac791b |
|
MD5 | 3e8409ba7aafdbb30d525f27a84b784b |
|
BLAKE2b-256 | b616f81aad9d2dde7c790c7b78717a7e2cfb47c0137d082973fb4a9433934a61 |