Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

Commit

Permalink
More work towards passing test
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 11, 2013
1 parent e2fa4e6 commit 29f31fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -73,6 +73,8 @@ def main():
"Topic :: Utilities"],
license="MIT",

install_requires=["pytest"],

url="http://mathema.tician.de/software/tagpy",
packages=["tagpy", "tagpy.ogg"],
ext_modules=[
Expand Down
4 changes: 3 additions & 1 deletion test/test_tagpy.py
@@ -1,3 +1,4 @@
import pytest
import tagpy
try:
import faulthandler
Expand All @@ -8,7 +9,8 @@


def test_non_existing_fileref():
tagpy.FileRef('does_not_exist.ogg')
with pytest.raises(IOError):
tagpy.FileRef('does_not_exist.ogg')


if __name__ == "__main__":
Expand Down

0 comments on commit 29f31fe

Please sign in to comment.