Skip to content

Commit

Permalink
fix: 💄 linter
Browse files Browse the repository at this point in the history
  • Loading branch information
afranzi committed Jan 2, 2024
1 parent 5181197 commit 9ed7204
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ profile = "black"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-p no:warnings"
testpaths = ["tests"]
testpaths = ["tests"]
1 change: 0 additions & 1 deletion tests/dummy_gummy/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ seeds:
models:
dummy_gummy:
+materialized: view

4 changes: 2 additions & 2 deletions tests/dummy_gummy/models/base/base_customers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ WITH customers AS (
),

final AS (
SELECT
SELECT
id as customer_id,
name,
created_at
FROM customers
)

SELECT *
FROM final
FROM final
4 changes: 2 additions & 2 deletions tests/dummy_gummy/models/base/base_orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ final AS (
FROM orders
)

SELECT *
FROM final
SELECT *
FROM final
4 changes: 2 additions & 2 deletions tests/dummy_gummy/models/base/base_potatoes.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WITH potatoes AS (
FROM {{ ref('raw_potatoes')}}
),
final AS (
SELECT
SELECT
id AS potato_id,
name,
color,
Expand All @@ -15,4 +15,4 @@ final AS (
)

SELECT *
FROM final
FROM final
4 changes: 2 additions & 2 deletions tests/dummy_gummy/models/orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ potato_sales AS (
),

final AS (
SELECT
SELECT
customer_name,
potato_name,
orders,
Expand All @@ -40,4 +40,4 @@ final AS (
)

SELECT *
FROM final
FROM final
2 changes: 1 addition & 1 deletion tests/dummy_gummy/models/sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ sources:
- name: potato_id
data_type: numeric
- name: quantity
data_type: numeric
data_type: numeric

0 comments on commit 9ed7204

Please sign in to comment.