Skip to content

Commit

Permalink
Lowered the number of test posts generated
Browse files Browse the repository at this point in the history
  • Loading branch information
Sureiya committed Nov 12, 2013
1 parent 81f260c commit 94a89c0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,23 @@

## [0.1.0](/compare/0.1.0...0.1.0)

* [59870dc](/commit/59870dc) Added Makefile with clean command to remove extra files added by testing and packaging
* [490f061](/commit/490f061) Added files needed for packaging, installation, and automated testing.
* [2b7188c](/commit/2b7188c) Added .gitignore
* [900bea5](/commit/900bea5) Added README and CHANGELOG
* [618ed71](/commit/618ed71) Removed test for debug_ipn since it no longer exists
* [1dd8062](/commit/1dd8062) Added license
* [a70dc20](/commit/a70dc20) Moved to subfolder for packaging
* [b6da793](/commit/b6da793) Fixed date conversion Documentation added where missing PEP8 and flake8 run-through
* [5c26e29](/commit/5c26e29) More json fallback for missing simplejson
* [c80e3cd](/commit/c80e3cd) Fixed invalid settings
* [bbc19d8](/commit/bbc19d8) simplejson should not be required.
* [cd95914](/commit/cd95914) django_clickbank is feature complete
* [ef8467d](/commit/ef8467d) Initial commit of django_clickbank

* [a70dc20](/commit/a70dc20) Moved to subfolder for packaging
* [b6da793](/commit/b6da793) Fixed date conversion Documentation added where missing PEP8 and flake8 run-through
* [5c26e29](/commit/5c26e29) More json fallback for missing simplejson
* [c80e3cd](/commit/c80e3cd) Fixed invalid settings
* [bbc19d8](/commit/bbc19d8) simplejson should not be required.
* [cd95914](/commit/cd95914) django_clickbank is feature complete
* [ef8467d](/commit/ef8467d) Initial commit of django_clickbank
2 changes: 1 addition & 1 deletion django_clickbank/tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_remap_post(self):
import copy
test_posts = copy.deepcopy(TEST_POSTS)

for i in range(0, 100):
for i in range(0, 10):
test_posts.append(generate_post(SECRET_KEY))

for post in TEST_POSTS:
Expand Down
2 changes: 1 addition & 1 deletion django_clickbank/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_ipn(self):
client = Client()
import copy
test_posts = copy.deepcopy(TEST_POSTS)
for i in range(0, 100):
for i in range(0, 10):
test_posts.append(generate_post(SECRET_KEY))

for post in test_posts:
Expand Down

0 comments on commit 94a89c0

Please sign in to comment.