Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akolotov/qadwallet-testenv
Testing environment for QADWallet assignement
https://github.com/akolotov/qadwallet-testenv
ethereum test-automation web3py
Last synced: 12 days ago
JSON representation
Testing environment for QADWallet assignement
- Host: GitHub
- URL: https://github.com/akolotov/qadwallet-testenv
- Owner: akolotov
- License: mit
- Created: 2018-01-19T23:05:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-22T13:23:22.000Z (about 7 years ago)
- Last Synced: 2024-11-22T16:40:59.818Z (2 months ago)
- Topics: ethereum, test-automation, web3py
- Language: Python
- Size: 138 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
These set of files is intended to perform automatic testing of 'qadwallet' assignement.
The statement of the assignement is available on https://goo.gl/zjpJp6 (Task #1).
1. Put the code of your implementation to `qadwallet.py` of `src` directory.
2. Modify `qadwallet.json` file and manually test your implementatuin carefully.
3. To check that the implementation is compatible with automatic testing system
use `do_tests` script. It requires path to ethereum-go client (geth)
and python interpeter with `web3.py` library set up in the environment.
For example,On Linux:
```
$ ./do_tests.sh /opt/geth/geth /opt/anaconda3/bin/python
```On Windows:
```
do_tests.cmd "c:\Program Files\Geth\geth.exe" "c:\Anaconda3\python.exe"
```4. Look at the passed and failed tests to find how close you to the final solution.