https://github.com/scorum/autoscorum
scorum automation framework
https://github.com/scorum/autoscorum
Last synced: 8 months ago
JSON representation
scorum automation framework
- Host: GitHub
- URL: https://github.com/scorum/autoscorum
- Owner: scorum
- Created: 2017-11-16T14:31:34.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2018-12-13T10:19:44.000Z (over 7 years ago)
- Last Synced: 2025-10-19T16:00:22.883Z (8 months ago)
- Language: Python
- Size: 865 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Requirements
* pipenv
# Installing
```bash
git clone https://github.com/scorum/autoscrorum.git
cd autoscorum
./autoscorum.sh --install
```
# Ways to run tests:
* `./runner.sh --target={PATH} {py_test_args_if_nedded}` where PATH is absolute path to scorumd bin, or scorumd parent directory, or project build directory
* `./runner.sh --image={IMAGE} {py_test_args_if_nedded}` where IMAGE is image name in docker hub(**WARNING** image will be deleted from local docker storage and downloaded from docker hub)
* `./runner.sh --image={IMAGE} --use-local-image {py_test_args_if_nedded}` where IMAGE is image name on your local docker storage
# Using pipenv
### Installing dev environment using pipenv
```bash
git clone https://github.com/scorum/autoscrorum.git
cd autoscorum
pipenv install
pipenv run pip install -e .
```
### Runing tests with py.test
```bash
pipenv run py.test tests
```