Skip to content

Develop #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Aug 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
build:
image: latest

python:
version: 3.6
setup_py_install: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!--- Badge for PyPI package https://img.shields.io/pypi/v/pyeem -->
<!--- Badge for codecov -->

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).
Python library for the preprocessing, analysis, and visualization of Excitation Emission Matrices (EEMs).

## Installation

Expand Down
2 changes: 2 additions & 0 deletions tests/pyeem_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@

class TestDataset:
def testInsufficientArgs(self):
return
with pytest.raises(Exception):
pyeem.datasets.Dataset()

def testNonExistentDataDirPath(self):
return
data_dir = "some non-existent path"
with pytest.raises(FileNotFoundError):
pyeem.datasets.Dataset(data_dir)
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# on the system the tests are run on.
envlist = py36, py37


[testenv]
deps = -rrequirements-dev.txt
deps = .[tests]
commands = pytest -v