From 298c0e9cf87e186cbe90b9200b8412e2c8a45c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartolom=C3=A9=20S=C3=A1nchez=20Salado?= Date: Mon, 25 Nov 2024 21:13:35 +0100 Subject: [PATCH] feat: remove unneeded Bitbucket config file --- bitbucket-pipelines.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 bitbucket-pipelines.yml 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 - -