Skip to content

Commit

Permalink
fixes travis config (I hope)
Browse files Browse the repository at this point in the history
  • Loading branch information
saxix committed Nov 26, 2015
1 parent abe66e3 commit 6c526bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ install:
- pip install tox coverage coveralls>=0.5

script:
- tox -e $TOXENV --recreate -- -vv --capture=no --cov=adminactions --cov-report=xml --cov-config=tests/.coveragerc
- tox -e $TOXENV --recreate -- tests -vv --capture=no --cov=adminactions --cov-report=xml --cov-config=tests/.coveragerc

before_success:
- coverage erase
Expand Down
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release 1.0 (dev)
=================
* minor refactoring
* official support for django 1.4 to 1.9
* official support for django 1.4 to 1.9
* official support for python 2.7, 3.3, 3.5
* merge :ghissue:`77` - add initial form values for CSV export
* merge :ghissue:`76` - reuse xls style while iterating over cells
Expand Down
3 changes: 1 addition & 2 deletions src/adminactions/mass_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ def __getitem__(self, field_class):
df.NullBooleanField: [('swap', (negate, False, True, ""))],
df.EmailField: [('change domain', (change_domain, True, True, "")),
('upper', (string.upper, False, True, "convert to uppercase")),
('lower', (string.lower, False, True, "convert to lowercase")),
],
('lower', (string.lower, False, True, "convert to lowercase"))],
df.URLField: [('change protocol', (change_protocol, True, True, ""))]
})

Expand Down
2 changes: 1 addition & 1 deletion src/adminactions/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import, unicode_literals

from django.conf.urls import patterns, url
from django.conf.urls import url

from adminactions.views import format_date

Expand Down

0 comments on commit 6c526bd

Please sign in to comment.