Skip to content

Commit

Permalink
9 basic table inserts working (MeltanoLabs#17)
Browse files Browse the repository at this point in the history
* Meltano settings fix

* Test failing for good reason! Need to cleanup data_files tests as they are not meant to all pass

* Added data_tests from tap-sqllite, and the example aapl tap from singer_sdk, and tap-countries from the singer_sdk

* Unable to merge sql types error fixed, try one at temp table implementation and merge implementation. Not working yet

* Merges now working, passing 5 tests now

* Reference issue for Merging and potential sql injection

* Fix lint issues

* Reminder for parallelism

* Get Timestamps in for date-time

* Update copyright on license

* lint fixes

* add postgres for pytest

* test_relational_data test fixed, dropping temp table every batch

* Lint fixed
  • Loading branch information
visch authored Nov 3, 2022
1 parent 34c1120 commit e047849
Show file tree
Hide file tree
Showing 10 changed files with 621 additions and 352 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ jobs:
pytest:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 AutoIDM
Copyright (c) 2022 Meltano Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit e047849

Please sign in to comment.