Github user prateekiiest commented on a diff in the pull request: https://github.com/apache/climate/pull/516#discussion_r199679566 --- Diff: ocw/tests/test_dap.py --- @@ -17,11 +17,14 @@ import unittest import datetime as dt -import ocw.data_source.dap as dap +try: + import ocw.data_source.dap as dap +except ImportError: --- End diff -- Are there any tests that need such skipping, let me know about it. I can work on it then
---