Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Complete Conversion to Pytest Idiom #16201

Merged
merged 5 commits into from
May 4, 2017

Commits on May 4, 2017

  1. MAINT: Convert test setup/teardown to pytest idiom

    * tm.TestCase now just inherits from object
    * setUpClass renamed to setup_class
    * tearDownClass renamed to teardown_class
    * setUp renamed to setup_method
    * tearDown renamed to teardown_method
    gfyoung committed May 4, 2017
    Configuration menu
    Copy the full SHA
    515f58a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bdc0a89 View commit details
    Browse the repository at this point in the history
  3. DOC: Update documentation for TestCase usage

    tm.TestCase no longer follows the nosetest idiom,
    so it is here to stay, so update the documentation
    to say that we are using it still.
    
    Closes pandas-devgh-15990.
    gfyoung committed May 4, 2017
    Configuration menu
    Copy the full SHA
    e0284e4 View commit details
    Browse the repository at this point in the history
  4. TST: Patch Circle matplotlib failure

    The tm.mplskip decorator was breaking on Circle,
    so this commit removes the decorator and replaces it
    with direct function calls to check for matplotlib.
    gfyoung committed May 4, 2017
    Configuration menu
    Copy the full SHA
    0fb4854 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7bed86a View commit details
    Browse the repository at this point in the history