diff --git a/test/BUILD b/test/BUILD index 108ddae..56de60d 100644 --- a/test/BUILD +++ b/test/BUILD @@ -137,15 +137,6 @@ python_test( data = {"txt": ["data.txt"]}, ) -python_test( - name = "cx_oracle_darwin_build_test", - srcs = ["cx_oracle_darwin_build_test.py"], - labels = [ - "pip", - ], - deps = ["//third_party/python:cx_oracle"], -) - plugin_e2e_test( name = "pip_libary_zip_safe_label_test", repo = "zip_safe_label_repo", diff --git a/test/cx_oracle_darwin_build_test.py b/test/cx_oracle_darwin_build_test.py deleted file mode 100644 index 0b81eb7..0000000 --- a/test/cx_oracle_darwin_build_test.py +++ /dev/null @@ -1,11 +0,0 @@ -import time -import unittest - - -class CxOracleTest(unittest.TestCase): - - def test_import(self): - start = time.time() - import cx_Oracle - end = time.time() - print('Imported cx_Oracle version %s in %0.2fs' % (cx_Oracle.__version__, end - start)) diff --git a/third_party/python/BUILD b/third_party/python/BUILD index 6513b4e..8c54fea 100644 --- a/third_party/python/BUILD +++ b/third_party/python/BUILD @@ -383,13 +383,6 @@ pip_library( version = "1.5", ) -pip_library( - name = "cx_oracle", - package_name = "cx-Oracle", - licences = ["BSD-3-Clause"], - version = "8.2.1", -) - pip_library( name = "distlib", licences = ["PSF-2.0"],