Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 0f4a45d

Browse files
author
Sean Budd
authored
remove csv support (#41)
* remove csv support
1 parent a38e534 commit 0f4a45d

File tree

9 files changed

+1
-199
lines changed

9 files changed

+1
-199
lines changed

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ test_script:
4949
- .\tests\unit_tests\run_unit_tests.cmd
5050

5151
# integration tests
52-
- .\tests\integration_tests\test_full_refresh_from_csv.cmd
5352
- .\tests\integration_tests\test_full_refresh_from_mssql.cmd
54-
- .\tests\integration_tests\test_incremental_refresh_from_csv.cmd
5553
- .\tests\integration_tests\test_incremental_refresh_from_mssql.cmd
5654
- .\tests\integration_tests\test_audit.cmd
5755

rdl/data_sources/DataSourceFactory.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import logging
22
from rdl.data_sources.MsSqlDataSource import MsSqlDataSource
3-
from rdl.data_sources.CsvDataSource import CsvDataSource
43

54

65
class DataSourceFactory(object):
76

87
def __init__(self, logger=None):
98
self.logger = logger or logging.getLogger(__name__)
10-
self.sources = [MsSqlDataSource, CsvDataSource]
9+
self.sources = [MsSqlDataSource]
1110

1211
def create_source(self, connection_string):
1312
for source in self.sources:

tests/integration_tests/csv_source/assertions/column_test_full_refresh_assertions.sql

Lines changed: 0 additions & 46 deletions
This file was deleted.

tests/integration_tests/csv_source/assertions/column_test_incremental_refresh_assertions.sql

Lines changed: 0 additions & 38 deletions
This file was deleted.

tests/integration_tests/csv_source/config/ColumnTest.json

Lines changed: 0 additions & 89 deletions
This file was deleted.

tests/integration_tests/csv_source/full_refresh_data/ColumnTest.csv

Lines changed: 0 additions & 6 deletions
This file was deleted.

tests/integration_tests/csv_source/incremental_refresh_data/ColumnTest.csv

Lines changed: 0 additions & 4 deletions
This file was deleted.

tests/integration_tests/test_full_refresh_from_csv.cmd

Lines changed: 0 additions & 6 deletions
This file was deleted.

tests/integration_tests/test_incremental_refresh_from_csv.cmd

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)