Skip to content

Commit

Permalink
move print statements for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
BWMac committed Nov 16, 2023
1 parent 896af76 commit d099b3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions src/agoradatatools/gx.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ def __init__(
self.expectation_suite_name = dataset_name
self.upload_folder = upload_folder
self.gx_project_dir = self._get_data_context_location()

print("-------------------------------------")
print(self.good_runner.gx_project_dir)
print("-------------------------------------")

self.context = gx.get_context(project_root_dir=self.gx_project_dir)
self.validations_path = (
self.gx_project_dir + "/gx/uncommitted/data_docs/local_site/validations"
Expand Down
4 changes: 0 additions & 4 deletions tests/test_gx.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ def setup_method(self, syn):
)

def test_that_an_initialized_runner_has_the_attributes_it_should(self, syn):
print("-------------------------------------")
print(self.good_runner.gx_project_dir)
print("-------------------------------------")

assert (
self.good_runner.gx_project_dir
== self.good_runner._get_data_context_location()
Expand Down

0 comments on commit d099b3f

Please sign in to comment.