Skip to content

Commit

Permalink
Pseudocode for dagster tests. NOT WORKING :)
Browse files Browse the repository at this point in the history
  • Loading branch information
feoh committed Jan 15, 2025
1 parent 5d2e634 commit 1257e04
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_dagster.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

import DagsterGraphQLPythonClient

def test_dagster_loaded_modules():
dagster_client = DagsterGraphQLPythonClient.Client("http://localhost:3000/graphql")
result = dagster_client.execute("query { __schema { types { name } } }")
assert result["data"]["__schema"]["types"] is not None

0 comments on commit 1257e04

Please sign in to comment.