Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃И DEV: Use -e install for tox runs #4375

Merged
merged 6 commits into from Oct 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 29 additions & 0 deletions .ci/docker-rabbitmq.yml
@@ -0,0 +1,29 @@
# A small configuration for use in local CI testing,
# if you wish to control the rabbitmq used.

# Simply install docker, then run:
# $ docker-compose -f .ci/docker-rabbitmq.yml up -d

# and to power down, after testing:
# $ docker-compose -f .ci/docker-rabbitmq.yml down

# you can monitor rabbitmq use at: http://localhost:15672

version: '3.4'

services:

rabbit:
image: rabbitmq:3.8.3-management
container_name: aiida-rmq
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- '5672:5672'
- '15672:15672'
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 30s
timeout: 30s
retries: 5
3 changes: 3 additions & 0 deletions pyproject.toml
Expand Up @@ -68,6 +68,9 @@ legacy_tox_ini = """
[tox]
envlist = py37-django

[testenv]
usedevelop=True

[testenv:py{36,37,38}-{django,sqla}]
deps =
py36: -rrequirements/requirements-py-3.6.txt
Expand Down