Skip to content

Commit

Permalink
chore: reorganize files (#261)
Browse files Browse the repository at this point in the history
* chore: reorganize files

* chore: fix config file location

* Fix tests run

Co-authored-by: Karolis Gudiškis <[email protected]>
  • Loading branch information
v3g42 and karolisg authored Nov 24, 2022
1 parent f13413c commit 064efa4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dozer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
SCHEMA: ${{ secrets.SNOWFLAKE_SCHEMA }}
WAREHOUSE: ${{ secrets.SNOWFLAKE_WAREHOUSE }}
with:
from_file: 'test.snowflake.sample.yaml'
to_file: 'dozer-config.test.snowflake.yaml'
commit: 'false'
from_file: "config/test.snowflake.sample.yaml"
to_file: "config/dozer-config.test.snowflake.yaml"
commit: "false"

- name: ⚡ Cache
uses: actions/cache@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
SCHEMA: ${{ secrets.SNOWFLAKE_SCHEMA }}
WAREHOUSE: ${{ secrets.SNOWFLAKE_WAREHOUSE }}
with:
from_file: "test.snowflake.sample.yaml"
to_file: "dozer-config.test.snowflake.yaml"
from_file: "config/test.snowflake.sample.yaml"
to_file: "config/dozer-config.test.snowflake.yaml"
commit: "false"

- uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -142,8 +142,8 @@ jobs:
SCHEMA: ${{ secrets.SNOWFLAKE_SCHEMA }}
WAREHOUSE: ${{ secrets.SNOWFLAKE_WAREHOUSE }}
with:
from_file: "test.snowflake.sample.yaml"
to_file: "dozer-config.test.snowflake.yaml"
from_file: "config/test.snowflake.sample.yaml"
to_file: "config/dozer-config.test.snowflake.yaml"
commit: "false"

- name: Install Criterion
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dozer-ingestion/src/connectors/snowflake/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::thread;
#[cfg(feature = "snowflake")]
#[test]
fn connect_and_read_from_snowflake_stream() {
let source = load_config("../dozer-config.test.snowflake.yaml".to_string()).unwrap();
let source = load_config("../config/dozer-config.test.snowflake.yaml".to_string()).unwrap();

remove_streams(source.connection.clone(), &source.table_name).unwrap();

Expand Down
Binary file removed snowflake_driver.deb
Binary file not shown.

0 comments on commit 064efa4

Please sign in to comment.