Skip to content

Commit

Permalink
Uncommented backend list.
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed May 22, 2018
1 parent f19e4ee commit f748136
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions ibis/tests/all/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ def data_directory():


@pytest.fixture(params=[
# pytest.param(Csv, marks=pytest.mark.csv),
# pytest.param(Parquet, marks=pytest.mark.parquet),
# pytest.param(Pandas, marks=pytest.mark.pandas),
# pytest.param(SQLite, marks=pytest.mark.sqlite),
# pytest.param(Postgres, marks=pytest.mark.postgres),
pytest.param(Csv, marks=pytest.mark.csv),
pytest.param(Parquet, marks=pytest.mark.parquet),
pytest.param(Pandas, marks=pytest.mark.pandas),
pytest.param(SQLite, marks=pytest.mark.sqlite),
pytest.param(Postgres, marks=pytest.mark.postgres),
pytest.param(MapD, marks=pytest.mark.mapd),
# pytest.param(MySQL, marks=pytest.mark.mysql),
# pytest.param(Clickhouse, marks=pytest.mark.clickhouse),
# pytest.param(BigQuery, marks=pytest.mark.bigquery),
# pytest.param(Impala, marks=pytest.mark.impala)
pytest.param(MySQL, marks=pytest.mark.mysql),
pytest.param(Clickhouse, marks=pytest.mark.clickhouse),
pytest.param(BigQuery, marks=pytest.mark.bigquery),
pytest.param(Impala, marks=pytest.mark.impala)
], scope='session')
def backend(request, data_directory):
return request.param(data_directory)
Expand Down

0 comments on commit f748136

Please sign in to comment.