Skip to content

Commit 3263091

Browse files
committed
color test result
1 parent 3045e4e commit 3263091

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

ChangeLog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
CHANGELOG
22

3-
2015-06-23
3+
2015-07-XX X.X.X
44
* Remove algolia_buildindex command. Use algolia_reindex instead.
55
* Change settings format. Last format is still supported.
66
* Add unit test.
7+
* Support tags.
8+
* Various bug fix.

tests/settings.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@
6464
'INDEX_PREFIX': 'django' + os.getenv('TRAVIS_JOB_NUMBER', ''),
6565
'INDEX_SUFFIX': 'test'
6666
}
67+
68+
TEST_RUNNER='redgreenunittest.django.runner.RedGreenDiscoverRunner'

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ skip_missing_interpreters = True
88
deps =
99
django17: Django>=1.7,<1.8
1010
django18: Django>=1.8,<1.9
11+
redgreenunittest
1112
passenv =
1213
ALGOLIA*
1314
TRAVIS*
1415
commands = python runtests.py
1516

1617
[testenv:coverage]
1718
basepython = python2.7
18-
deps = coverage
19+
deps =
20+
redgreenunittest
21+
coverage
1922
passenv =
2023
ALGOLIA*
2124
TRAVIS*
@@ -26,6 +29,7 @@ commands =
2629
[testenv:coveralls]
2730
basepython = python2.7
2831
deps =
32+
redgreenunittest
2933
coverage
3034
coveralls
3135
passenv =

0 commit comments

Comments
 (0)