Skip to content

Latest commit

 

History

History
49 lines (43 loc) · 2.37 KB

File metadata and controls

49 lines (43 loc) · 2.37 KB

Some tests are run automatically in the pipeline after pushing in the repository

See the folder .github/workflows

Here are some advices for local testing of the library with different Python DB modules

Oracle:

PostgreSQL

  • https://hub.docker.com/_/postgres
  • docker pull postgres
  • docker run --rm --name postgres -e POSTGRES_USER=db_user -e POSTGRES_PASSWORD=pass -e POSTGRES_DB=db -p 5432:5432 -d postgres

Teradata

IBM Db2

  • https://hub.docker.com/r/ibmcom/db2
  • docker pull ibmcom/db2
  • docker run --rm -itd --name mydb2 --privileged=true -p 50000:50000 -e LICENSE=accept -e DB2INSTANCE=db_user -e DB2INST1_PASSWORD=pass -e DBNAME=db ibmcom/db2 --> needs some minutes to start the DB !!!

MySQL

Microsoft SQL Server