Drone(drone.io)というCIツールを使っています。だから私は本当にそれでいくつかの統合テストをしたいと思っています。私が望むのは、Drone がドローン ホストのポートでアプリケーション コンテナーを起動し、それに対して統合テストを実行できるようにすることです。たとえば、.drone.yml ファイルでは次のようになります。
build:
image: python3.5-uwsgi
pull: true
auth_config:
username: some_user
password: some_password
email: email
commands:
- pip install --user --no-cache-dir -r requirements.txt
- python manage.py integration_test -h 127.0.0.1:5000
# this should send various requests to 127.0.0.1:5000
# to test my application's behaviour
compose:
my_application:
# build and run a container based on dockerfile in local repo on port 5000
publish:
deploy: