diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 04eb35a70..000000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,18 +0,0 @@ -# This is a sample build configuration for Python. -# Check our guides at https://confluence.atlassian.com/x/x4UWN for more examples. -# Only use spaces to indent your .yml configuration. -# ----- -# You can specify a custom docker image from Docker Hub as your build environment. -image: python:3.5.3 - -pipelines: - default: - - step: - caches: - - pip - script: # Modify the commands below to build your repository. - - pip install tox - - mkdir -p tests/functional/tmp - - tox -e py27,py35,flake8 - -