Skip to content

Commit

Permalink
fix: better error checking
Browse files Browse the repository at this point in the history
For missing paths and unspecified merge columns.
  • Loading branch information
kalekundert committed Oct 11, 2021
1 parent d98d8b6 commit eea82a3
Show file tree
Hide file tree
Showing 7 changed files with 722 additions and 309 deletions.
4 changes: 2 additions & 2 deletions tests/param_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import parametrize_from_file

from wellmap import *
from voluptuous import Schema, Optional
from voluptuous import Schema, Optional, And, Or
from parametrize_from_file.voluptuous import Namespace

class ExpectNaN:
Expand All @@ -15,7 +15,7 @@ def __eq__(self, other):

with_py = Namespace()
with_nan = Namespace(nan=ExpectNaN())
with_wellmap = Namespace('import wellmap; from wellmap import *')
with_wellmap = Namespace('import wellmap; from wellmap import *; import pandas as pd')

@pytest.fixture
def files(request, tmp_path):
Expand Down
Loading

0 comments on commit eea82a3

Please sign in to comment.