Age | Commit message (Collapse) | Author |
|
* wqflask/wqflask/views.py - Removed an if statement that was
unnecessary, because it already checks if dataset is either the string
"Temp" or of type "Temp"
|
|
header
* wqflask/wqflask/static/new/css/show_trait.css - Changed right margin
from 20px to 15px to better account for the width of the sort arrows in
the header cell
|
|
* wqflask/wqflask/show_trait/show_trait.py - Just added more pixels in
the function which determines the overall table width
|
|
cofactors, leading to an error in non-Chrome browsers
*
wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js
- Added a line that checks if the table already exists before
initializing it; this issue is caused by a circular import issue, but
I'm not sure how to get around it yet
|
|
* wqflask/utility/authentication_tools.py: the code forgot to get
resource_info when a resource wasn't in Redis yet, causing an error when
it was referenced, so I added a line getting the resource info (and also
a couple comments for other lines related to authentication)
|
|
the original tab's contents to be removed
* wqflask/wqflask/templates/mapping_results.html: minor change to add
spaces for readability
* wqflask/wqflask/marker_regression/display_mapping_results.py: Removed
"return" from chrView and rangeView since it appears to remove original
tab's contents in some browers when submitting form
|
|
|
|
Tests/add tests for base module
|
|
me to edit resource owners
|
|
* wqflask/base/webqtlCaseData.py (webqtlCaseData):
- Remove obsolete 'Object' from Class inheritance
- Replace 'str' with 'case_data_string' variable- it collides with python in-builts
- Use pythonic 'is Not None' form
- Remove redundancy in 'if' forms
- Update copyright header
|
|
* wqflask/tests/base/test_webqtl_case_data.py: Add it
|
|
* wqflask/base/data_set.py (Dataset):
- Add set_dataset_key
- Remove __call__ method
|
|
* wqflask/tests/base/test_data_set.py: Add more tests.
|
|
* wqflask/base/data_set.py (DatasetType): Use object's redis instance
|
|
* wqflask/tests/base/test_data_set.py: assert that `set` and `get` are called
correctly
|
|
* wqflask/tests/base/test_data_set.py(tests): Check correct results are returned
when Redis is empty
* wqflask/tests/base/data.py(tests): New file. Adds json test data.
|
|
* wqflask/tests/base/test_data_set.py: Apply pylint
|
|
Updating docs
|
|
|
|
Docs/document how to run tests
|
|
* doc/testing.org:
- Update how Mechanical Robs works. Python replaced Ruby as
the testing tool
- Add section that describes how to run unit tests
|
|
* README.md:
- Add details on how to run unit tests
- Update link that points to Mechanical Rob
|
|
* tests/unittests: Delete it. All unittests were moved to wqflask/tests in
3d6483e8
|
|
|
|
|
|
|
|
|
|
|
|
Build/add tests
|
|
* test/unittest/base/test_general_object.py: replace the import statement to use
the module path instead of the path referenced from PYTHONPATH
|
|
|
|
|
|
name/organization
|
|
|
|
* .coveragerc: Move .coveragerc to wqflask so that the coverage test tool can
pick it up automatically without having to add an `--rc-file` flag
|
|
* .coveragerc: add it
|
|
|
|
|
|
This reverts commit d5e87fa6fe7546b46790f512d984a5501223082f.
|
|
* wqflask/utility/tools.py: Unittests will use `from wqflask.wqflask import app`
and the gn2 script will use `from wqflask import app`
|
|
|
|
* wqflask/base/GeneralObject.py(__getattr__): remove if statement that is
unreachable
|
|
* wqflask/tests/base/test_general_object.py: test getattr() and `==`
|
|
* wqflask/tests/base/test_general_object.py: test object's magic methods
|
|
* .coveragerc: Move .coveragerc to wqflask so that the coverage test tool can
pick it up automatically without having to add an `--rc-file` flag
|
|
|
|
* .coveragerc: add it
|
|
|
|
|
|
* wqflask/base/data_set.py(DatasetType):
- Rename Redis instance to r to avoid confusion and name collisions
- Inject the redis instance into Dataset_Types class to make it easier to test
- Rename Dataset_Types class to DatasetType class
|