Changeset 2ab1bac in sasmodels


Ignore:
Timestamp:
Jan 27, 2018 5:08:19 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:
6dba2f0
Parents:
1f991d6
Message:

include matplotlib in reqs; trying fixing opencl test for travis

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    r1f991d6 r2ab1bac  
    3838- conda info -a 
    3939# 2018-01-26 PAK: sasmodels uses yield generator for tests, which isn't supported in pytest 4+ 
    40 - conda install --yes python=$PY numpy scipy cython mako docutils cffi setuptools "pytest<4" 
     40- conda install --yes python=$PY numpy scipy matplotlib docutils setuptools "pytest<4" 
    4141install: 
    4242- pip install bumps 
    43 - pip install unittest-xml-reporting 
     43- pip install unittest-xml-reporting tinycc 
    4444script: 
    4545- python --version 
  • appveyor.yml

    r1f991d6 r2ab1bac  
    6969    # 2018-01-19 PAK: skipping toolchain cython and cffi (these were for pyopencl?) 
    7070    # 2018-01-26 PAK: sasmodels uses yield generator for tests, which isn't supported in pytest 4+ 
    71     - cmd: conda install --yes --quiet numpy scipy docutils setuptools "pytest<4" 
     71    - cmd: conda install --yes --quiet numpy scipy matplotlib docutils setuptools "pytest<4" 
    7272    # 2018-01-19 PAK: skipping pyopencl; this would be needed for deploy but maybe not for test 
    7373    #- cmd: conda install --yes --channel conda-forge pyopencl 
  • conftest.py

    rbb4ff2a r2ab1bac  
    2222 
    2323try: 
    24     import pyopencl 
     24    # Ask OpenCL for the default context so that we know that one exists 
     25    import pyopencl as cl 
     26    cl.create_some_context(interactive=False) 
    2527    TEST_PYOPENCL = True 
    2628except ImportError: 
Note: See TracChangeset for help on using the changeset viewer.