- 05 Feb, 2015 1 commit
-
-
polesye committed
-
- 04 Feb, 2015 5 commits
-
-
Calen Pennington committed
-
The existing pattern of using `override_settings(MODULESTORE=...)` prevented us from having more than one layer of subclassing in modulestore tests. In a structure like: @override_settings(MODULESTORE=store_a) class BaseTestCase(ModuleStoreTestCase): def setUp(self): # use store @override_settings(MODULESTORE=store_b) class ChildTestCase(BaseTestCase): def setUp(self): # use store In this case, the store actions performed in `BaseTestCase` on behalf of `ChildTestCase` would still use `store_a`, even though the `ChildTestCase` had specified to use `store_b`. This is because the `override_settings` decorator would be the innermost wrapper around the `BaseTestCase.setUp` method, no matter what `ChildTestCase` does. To remedy this, we move the call to `override_settings` into the `ModuleStoreTestCase.setUp` method, and use a cleanup to remove the override. Subclasses can just defined the `MODULESTORE` class attribute to specify which modulestore to use _for the entire `setUp` chain_. [PLAT-419]
Calen Pennington committed -
Calen Pennington committed
-
Sarina Canelake committed
-
Omar Al-Ithawi committed
-
- 03 Feb, 2015 8 commits
-
-
Calen Pennington committed
-
ECOM-891: Allow tracking of invoice transactions. Authors: Awais Qureshi and Aamir Khan
Awais Qureshi committed -
- Price field added to Advanced Settings - Function that decides which price to display - Test added to check that the function outputs correct price - Added feature flag and conditional to decide whether to display course price or not - Feature Flag to show or hide course price on Course About page sidebar when not using shopping cart
Giulio Gratta committed -
Chris Rodriguez committed
-
Ben Patterson committed
-
TNL-1304
Waheed Ahmed committed -
Move default country access messages out of static_templates, so they are not served by other Django views.
Will Daly committed -
These were found by the new pylint checker I wrote! :)
Ned Batchelder committed
-
- 02 Feb, 2015 4 commits
-
-
Will Daly committed
-
Add Django admin UI for configuring country access Migrate existing embargo rules into the new tables.
Will Daly committed -
Christine Lytwynec committed
-
PLAT-420
zubair-arbi committed
-
- 31 Jan, 2015 1 commit
-
-
Marco Morales committed
-
- 30 Jan, 2015 4 commits
-
-
Bok choy will now be broken as follows: * shard 1 * shard 2 * shard 3 * default shard (i.e. 'none of the above') We use our shards to break up work and reduce overall test time by leveraging multiple test systems.
Ben Patterson committed -
Chris Rodriguez committed
-
Makes logistration available at /login and /register as well as /accounts/login/ and /accounts/register/. In addition: - Adds support for redirect URLs in third party auth for combined login/registration page - Adds support for external auth on the combined login/registration page - Removes old login and registration acceptance tests - Adds deprecation warnings to old login and register views - Moves third party auth util to student_account - Adds exception for microsites (theming)
Renzo Lucioni committed -
Awais committed
-
- 29 Jan, 2015 15 commits
-
-
Conflicts: common/lib/xmodule/xmodule/css/sequence/display.scss
Chris Rodriguez committed -
Jonathan Piacenti committed
-
ECOM-963 update copy in tests
Diana Huang committed -
Renzo Lucioni committed
-
jsa committed
-
Removes old payment and verification endpoints, views, templates, and tests, making the new split flow the default. The SEPARATE_VERIFICATION_FROM_PAYMENT feature flag is also removed.
Renzo Lucioni committed -
Syed Hassan Raza committed
-
ECOM-1007
Jesse Zoldak committed -
Chris Rodriguez committed
-
Chris Rodriguez committed
-
TNL-1185
muzaffaryousaf committed -
TNL-1185
muzaffaryousaf committed -
Matt Drayer committed
-
Matt Drayer committed
-
Davorin Sego committed
-
- 28 Jan, 2015 2 commits
-
-
jsa committed
-
This reverts commit 66b949b7.
Adam Palay committed
-