Skip to content

Commit 3605197

Browse files
committed
Git test robinhood#2
1 parent 89bd977 commit 3605197

File tree

6 files changed

+6
-14
lines changed

6 files changed

+6
-14
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: python
2-
sudo: false
2+
sudo: required
33
cache: false
44
python:
55
- '3.5'
@@ -29,3 +29,5 @@ script: tox -v -- -v
2929
after_success:
3030
- VERSION/bin/coverage xml
3131
- .tox/$TRAVIS_PYTHON_VERSION/bin/codecov -e TOXENV
32+
services:
33+
- rabbitmq

django/foo

Whitespace-only changes.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool:pytest]
2-
testpaths = t
2+
testpaths = t/unit
33
python_classes = test_*
44
DJANGO_SETTINGS_MODULE=t.proj.settings
55

testproj/.coveragerc

-1
This file was deleted.

testproj/manage.py

-11
This file was deleted.

thorn/dispatch/celery.py

+2
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,7 @@ def send(self, event, payload, sender,
6161
#
6262
# this way requests have a good chance of reusing keepalive
6363
# connections as requests with the same host are grouped together.
64+
print('REQUESTS: %r' %(list(self.prepare_requests(
65+
event, payload, sender, timeout, context, **kwargs))))
6466
return self.as_request_group(self.prepare_requests(
6567
event, payload, sender, timeout, context, **kwargs)).delay()

0 commit comments

Comments
 (0)