63 lines
2.4 KiB
YAML
63 lines
2.4 KiB
YAML
sudo: true
|
|
os:
|
|
- linux
|
|
dist: xenial
|
|
language: python
|
|
python:
|
|
- 3.6
|
|
services:
|
|
- docker
|
|
env:
|
|
global:
|
|
- IMAGE_NAME=freqtradeorg/freqtrade
|
|
install:
|
|
- cd build_helpers && ./install_ta-lib.sh ${HOME}/dependencies/; cd ..
|
|
- export LD_LIBRARY_PATH=${HOME}/dependencies/lib:$LD_LIBRARY_PATH
|
|
- export TA_LIBRARY_PATH=${HOME}/dependencies/lib
|
|
- export TA_INCLUDE_PATH=${HOME}/dependencies/lib/include
|
|
- pip install -r requirements-dev.txt
|
|
- pip install -e .
|
|
jobs:
|
|
|
|
include:
|
|
- stage: tests
|
|
script:
|
|
- pytest --random-order --cov=freqtrade --cov-config=.coveragerc
|
|
# Allow failure for coveralls
|
|
# - coveralls || true
|
|
name: pytest
|
|
- script:
|
|
- cp config.json.example config.json
|
|
- freqtrade create-userdir --userdir user_data
|
|
- freqtrade backtesting --datadir tests/testdata --strategy SampleStrategy
|
|
name: backtest
|
|
- script:
|
|
- cp config.json.example config.json
|
|
- freqtrade create-userdir --userdir user_data
|
|
- freqtrade hyperopt --datadir tests/testdata -e 5 --strategy SampleStrategy --hyperopt SampleHyperOpt
|
|
name: hyperopt
|
|
- script: flake8
|
|
name: flake8
|
|
- script:
|
|
# Test Documentation boxes -
|
|
# !!! <TYPE>: is not allowed!
|
|
# !!! <TYPE> "title" - Title needs to be quoted!
|
|
- grep -Er '^!{3}\s\S+:|^!{3}\s\S+\s[^"]' docs/*; test $? -ne 0
|
|
name: doc syntax
|
|
- script: mypy freqtrade scripts
|
|
name: mypy
|
|
|
|
# - stage: docker
|
|
# if: branch in (master, develop, feat/improve_travis) AND (type in (push, cron))
|
|
# script:
|
|
# - build_helpers/publish_docker.sh
|
|
# name: "Build and test and push docker image"
|
|
|
|
notifications:
|
|
slack:
|
|
secure: bKLXmOrx8e2aPZl7W8DA5BdPAXWGpI5UzST33oc1G/thegXcDVmHBTJrBs4sZak6bgAclQQrdZIsRd2eFYzHLalJEaw6pk7hoAw8SvLnZO0ZurWboz7qg2+aZZXfK4eKl/VUe4sM9M4e/qxjkK+yWG7Marg69c4v1ypF7ezUi1fPYILYw8u0paaiX0N5UX8XNlXy+PBlga2MxDjUY70MuajSZhPsY2pDUvYnMY1D/7XN3cFW0g+3O8zXjF0IF4q1Z/1ASQe+eYjKwPQacE+O8KDD+ZJYoTOFBAPllrtpO1jnOPFjNGf3JIbVMZw4bFjIL0mSQaiSUaUErbU3sFZ5Or79rF93XZ81V7uEZ55vD8KMfR2CB1cQJcZcj0v50BxLo0InkFqa0Y8Nra3sbpV4fV5Oe8pDmomPJrNFJnX6ULQhQ1gTCe0M5beKgVms5SITEpt4/Y0CmLUr6iHDT0CUiyMIRWAXdIgbGh1jfaWOMksybeRevlgDsIsNBjXmYI1Sw2ZZR2Eo2u4R6zyfyjOMLwYJ3vgq9IrACv2w5nmf0+oguMWHf6iWi2hiOqhlAN1W74+3HsYQcqnuM3LGOmuCnPprV1oGBqkPXjIFGpy21gNx4vHfO1noLUyJnMnlu2L7SSuN1CdLsnjJ1hVjpJjPfqB4nn8g12x87TqM1bOm+3Q=
|
|
cache:
|
|
pip: True
|
|
directories:
|
|
- $HOME/dependencies
|