Skip to content
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ commands:
steps:
- run: |
python setup.py install
python -m pip install pytest
python -m pip install pytest testfixtures
- run: pytest

jobs:
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,13 @@ instead of `bin`.

# How to run tests

From the project root directory run: `python setup.py test`.
You can use another test runner such as pytest or nose at your preference.
Tests framework is using pytest and testfixtures

```
pip install pytest testfixtures
pytest
```



# Development process
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:
install:
- "%PYTHON_EXE% --version"
- "%PYTHON_EXE% setup.py install"
- "%PYTHON_EXE% -m pip install pytest"
- "%PYTHON_EXE% -m pip install pytest testfixtures"

build: off

Expand Down
96 changes: 0 additions & 96 deletions examples/parse_json.py

This file was deleted.

102 changes: 0 additions & 102 deletions examples/parse_rdf.py

This file was deleted.

35 changes: 0 additions & 35 deletions examples/parse_tv.py

This file was deleted.

94 changes: 0 additions & 94 deletions examples/parse_xml.py

This file was deleted.

Loading