Skip to content

Commit

Permalink
Merge 6827e60 into 3dd84bd
Browse files Browse the repository at this point in the history
  • Loading branch information
keis committed Nov 22, 2020
2 parents 3dd84bd + 6827e60 commit 062706b
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 23 deletions.
2 changes: 0 additions & 2 deletions .coveragerc
Expand Up @@ -2,5 +2,3 @@
omit =
*/python?.?/*
*/pypy/*
*/site-packages/nose/*
test.py
6 changes: 3 additions & 3 deletions .travis.yml
@@ -1,14 +1,14 @@
language: python
sudo: false
os: linux
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
- "pypy"
install:
- pip install -r test-requirements.txt
- pip install '.[tests]'
script:
py.test --pep8 --flakes --cov=matchmock
py.test --flakes --cov=matchmock
after_success:
coveralls
File renamed without changes.
21 changes: 21 additions & 0 deletions setup.cfg
@@ -0,0 +1,21 @@
[metadata]
name = matchmock
author = David Keijser
author_email = keijser@gmail.com
version = 1.0.0
description = Hamcrest matchers for mock objects.
long_description = file: README.md
url = https://github.com/keis/matchmock

[options]
packages = matchmock

[options.extras_require]
tests =
pytest>=4
pytest-flakes
pytest-cov
PyHamcrest
pep8
mock
coveralls
8 changes: 1 addition & 7 deletions setup.py
@@ -1,9 +1,3 @@
from setuptools import setup

setup(
name='matchmock',
version='0.7.1',
description='Hamcrest matchers for mock objects',
url='https://github.com/keis/matchmock',
py_modules=['matchmock']
)
setup()
8 changes: 0 additions & 8 deletions test-requirements.txt

This file was deleted.

Empty file added tests/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist = py27,py35
envlist = py27,py37

[testenv]
deps = -rtest-requirements.txt
commands = py.test --pep8 --flakes --cov=matchmock
deps = .[tests]
commands = py.test --flakes --cov=matchmock

0 comments on commit 062706b

Please sign in to comment.