Michael Merickel
2018-10-15 f9da0b676f29444b7d3628d0340b081fb02d4aa2
fix tests to run from the tests folder
3 files modified
13 ■■■■■ changed files
appveyor.yml 2 ●●●●● patch | view | raw | blame | history
setup.cfg 6 ●●●● patch | view | raw | blame | history
setup.py 5 ●●●●● patch | view | raw | blame | history
appveyor.yml
@@ -6,6 +6,8 @@
      TOXENV: "py36"
    - PYTHON: "C:\\Python35"
      TOXENV: "py35"
    - PYTHON: "C:\\Python34"
      TOXENV: "py34"
    - PYTHON: "C:\\Python27"
      TOXENV: "py27"
setup.cfg
@@ -2,9 +2,9 @@
zip_ok = false
[nosetests]
match=^test
where=pyramid
nocapture=1
match = ^test
tests = src/pyramid,tests,docs
nocapture = 1
[aliases]
dev = develop easy_install pyramid[testing]
setup.py
@@ -81,7 +81,8 @@
      author_email="pylons-discuss@googlegroups.com",
      url="https://trypyramid.com",
      license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
      packages=find_packages(),
      packages=find_packages('src', exclude=['tests']),
      package_dir={'': 'src'},
      include_package_data=True,
      zip_safe=False,
      python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
@@ -92,7 +93,7 @@
          'docs': docs_extras,
      },
      tests_require=tests_require,
      test_suite="pyramid.tests",
      test_suite="tests",
      entry_points="""\
        [pyramid.scaffold]
        starter=pyramid.scaffolds:StarterProjectTemplate