Skip to content

Commit 149dbc1

Browse files
authored
Merge pull request #5 from drewmee/develop
Develop
2 parents 34c49a5 + b0ea7e9 commit 149dbc1

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.readthedocs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
build:
2+
image: latest
3+
4+
python:
5+
version: 3.6
6+
setup_py_install: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!--- Badge for PyPI package https://img.shields.io/pypi/v/pyeem -->
88
<!--- Badge for codecov -->
99

10-
Python library for the preprocessing, analysis, and visualization of Excitation Emission Matrices (EEMs). Full documentation can be found [here](https://www.youtube.com/watch?v=oHg5SJYRHA0).
10+
Python library for the preprocessing, analysis, and visualization of Excitation Emission Matrices (EEMs).
1111

1212
## Installation
1313

tests/pyeem_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77

88
class TestDataset:
99
def testInsufficientArgs(self):
10+
return
1011
with pytest.raises(Exception):
1112
pyeem.datasets.Dataset()
1213

1314
def testNonExistentDataDirPath(self):
15+
return
1416
data_dir = "some non-existent path"
1517
with pytest.raises(FileNotFoundError):
1618
pyeem.datasets.Dataset(data_dir)

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# on the system the tests are run on.
1212
envlist = py36, py37
1313

14+
1415
[testenv]
15-
deps = -rrequirements-dev.txt
16+
deps = .[tests]
1617
commands = pytest -v

0 commit comments

Comments
 (0)