Changeset 42158d2 in sasmodels


Ignore:
Timestamp:
Jan 26, 2018 8:54:53 PM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
1f991d6
Parents:
bb4ff2a
Message:

work around travis/appveyor limitations for pytest

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    rbb4ff2a r42158d2  
    4545- python --version 
    4646#- python -m sasmodels.model_test -v dll all 
    47 - python -m pytest -v 
     47- python -m pytest -v --cache-clear 
    4848before_deploy: 
    4949- echo -e "Host danse.chem.utk.edu\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config 
  • appveyor.yml

    rbb4ff2a r42158d2  
    8989    #- python -m sasmodels.model_test dll all 
    9090    #- nosetests -v sasmodels/*.py 
    91     - python -m pytest -v 
     91    - python -m pytest -v --cache-clear 
  • sasmodels/jitter.py

    r0d5a655 r42158d2  
    1313import argparse 
    1414 
    15 import mpl_toolkits.mplot3d   # Adds projection='3d' option to subplot 
     15try: # CRUFT: travis-ci does not support mpl_toolkits.mplot3d 
     16    import mpl_toolkits.mplot3d  # Adds projection='3d' option to subplot 
     17except ImportError: 
     18    pass 
     19 
    1620import matplotlib.pyplot as plt 
    1721from matplotlib.widgets import Slider, CheckButtons 
Note: See TracChangeset for help on using the changeset viewer.