Skip to content

Commit

Permalink
turn on verbose output while testing csvsql
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenglimEar committed Nov 1, 2023
1 parent a80b6e7 commit c9988aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ jobs:
echo "c1,c2" > test.csv
echo "a,b" >> test.csv
cat test.csv
csvsql --doublequote --db postgresql:///disclosure-backend --insert test.csv
csvsql -v --doublequote --db postgresql:///disclosure-backend --insert test.csv
echo "List tables"
psql --query "SELECT * FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';"
psql -c "SELECT * FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';"
pip show sqlalchemy
- name: Create csv files
Expand Down

0 comments on commit c9988aa

Please sign in to comment.