Skip to content

Commit

Permalink
updating dev dependencies. Adding tests for include_paths
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Nov 14, 2024
1 parent 47d7816 commit 2d61bb1
Show file tree
Hide file tree
Showing 6 changed files with 352 additions and 98 deletions.
2 changes: 1 addition & 1 deletion requirements-cli.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
click==8.1.7
pyyaml==6.0.1
pyyaml==6.0.2
30 changes: 15 additions & 15 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
-r requirements.txt
-r requirements-cli.txt
bump2version==1.0.1
jsonpickle==3.2.1
coverage==7.5.3
jsonpickle==4.0.0
coverage==7.6.4
ipdb==0.13.13
numpy==2.0.0
pytest==8.2.2
pytest-cov==5.0.0
numpy==2.1.3
pytest==8.3.3
pytest-cov==6.0.0
python-dotenv==1.0.1
Sphinx==6.2.1 # We use the html style that is not supported in Sphinx 7 anymore.
sphinx-sitemap==2.6.0
sphinxemoji==0.2.0
flake8==7.1.0
sphinxemoji==0.3.1
flake8==7.1.1
python-dateutil==2.9.0.post0
orjson==3.10.5
wheel==0.43.0
tomli==2.0.1
tomli-w==1.0.0
pydantic==2.7.4
pytest-benchmark==4.0.0
pandas==2.2.2
polars==1.0.0
orjson==3.10.11
wheel==0.45.0
tomli==2.1.0
tomli-w==1.1.0
pydantic==2.9.2
pytest-benchmark==5.1.0
pandas==2.2.3
polars==1.13.1
2 changes: 1 addition & 1 deletion tests/test_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class TestCommands:

@pytest.mark.parametrize('name1, name2, expected_in_stdout, expected_exit_code', [
('t1.json', 't2.json', """dictionary_item_added": [\n "root[0][\'key3\']""", 0),
('t1_corrupt.json', 't2.json', "Expecting property name enclosed in double quotes", 1),
('t1_corrupt.json', 't2.json', "Error when loading t1: Illegal trailing comma before end of object: line 3 column 21 (char 45)\n", 1),
('t1.json', 't2_json.csv', '"old_value": "value2"', 0),
('t2_json.csv', 't1.json', '"old_value": "value3"', 0),
('t1.csv', 't2.csv', '"new_value": "James"', 0),
Expand Down
81 changes: 0 additions & 81 deletions tests/test_diff_include_paths

This file was deleted.

Loading

0 comments on commit 2d61bb1

Please sign in to comment.