Skip to content

Commit

Permalink
Comment out a non-working test
Browse files Browse the repository at this point in the history
  • Loading branch information
ways committed Nov 19, 2024
1 parent f67d3c9 commit dfee92d
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion sedr/test_schemat.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,27 @@ def test_set_up_schemathesis(self):

util.logger = util.set_up_logging(
args=util.args, logfile=util.args.log_file, version=__version__
)
)
import schemat

schemat.schema = schemat.set_up_schemathesis(util.args)
self.assertTrue(schemat.schema)


# def test_edr_landingpage(self):
# """Test test_edr_landingpage."""
# __version__ = "testversion"

# util.args = util.parse_args([], __version__)
# util.args.openapi_version == "3.1"

# util.logger = util.set_up_logging(
# args=util.args, logfile=util.args.log_file, version=__version__
# )
# import schemat

# schemat.schema = schemat.set_up_schemathesis(util.args)

# TODO: Need to set up a case to run this
# t = schemat.test_edr_landingpage()
# self.assertTrue(t)

0 comments on commit dfee92d

Please sign in to comment.