3 Star 6 Fork 0

Gitee 极速下载/cx-oracle

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/oracle/python-cx_Oracle
Clone or Download
contribute
Sync branch
Cancel
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README

This directory contains the test suite for cx_Oracle.

  1. The schemas and SQL objects that are referenced in the test suite can be created by running the Python script setup_test.py. The script requires administrative privileges and will prompt for these credentials as well as the names of the schemas that will be created, unless a number of environment variables are set, as documented in the Python script test_env.py. Run the script using the following command:

    python setup_test.py
    

    Alternatively, the SQL script can be run directly via SQL*Plus, which will always prompt for the names of the schemas that will be created. Run the script using the following command:

    sqlplus system/systempassword@hostname/servicename @sql/setup_test.sql
    
  2. Run the test suite by issuing the following command in the top-level directory of your cx_Oracle installation:

    tox
    

    This will build the module in an independent environment and run the test suite using the module that was just built in that environment. Alternatively, you can use the currently installed build of cx_Oracle and run the following command instead:

    python -m unittest discover -v -s test
    

    You may also run each of the test scripts independently, as in:

    python test_1000_module.py
    
  3. After running the test suite, the schemas can be dropped by running the Python script drop_test.py. The script requires administrative privileges and will prompt for these credentials as well as the names of the schemas that will be dropped, unless a number of environment variables are set, as documented in the Python script test_env.py. Run the script using the following command:

    python drop_test.py
    

    Alternatively, the SQL script can be run directly via SQL*Plus, which will always prompt for the names of the schemas that will be dropped. Run the script using the following command:

    sqlplus system/systempassword@hostname/servicename @sql/drop_test.sql
    
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/cx-oracle.git
git@gitee.com:mirrors/cx-oracle.git
mirrors
cx-oracle
cx-oracle
main

Search