Skip to content

Commit

Permalink
3.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyaven committed Apr 17, 2024
1 parent cfc712d commit 6b8f4cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,4 @@ To publish the package to PyPI, run the following command:

::

twine upload dist/pystackql-3.5.5.tar.gz
twine upload --config-file .pypirc dist/pystackql-3.5.5.tar.gz
4 changes: 2 additions & 2 deletions tests/pystackql_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ def test_09_csv_output_with_header(self):
@pystackql_test_setup()
def test_10_executeStmt(self):
okta_result_dict = self.stackql.executeStmt(registry_pull_okta_query)
okta_result = okta_result_dict[0]["message"]
okta_result = okta_result_dict["message"]
expected_pattern = registry_pull_resp_pattern("okta")
self.assertTrue(re.search(expected_pattern, okta_result), f"Expected pattern not found in result: {okta_result}")
github_result_dict = self.stackql.executeStmt(registry_pull_github_query)
github_result = github_result_dict[0]["message"]
github_result = github_result_dict["message"]
expected_pattern = registry_pull_resp_pattern("github")
self.assertTrue(re.search(expected_pattern, github_result), f"Expected pattern not found in result: {github_result}")
print_test_result(f"""Test executeStmt method\nRESULTS:\n{okta_result_dict}\n{github_result_dict}""", True)
Expand Down

0 comments on commit 6b8f4cd

Please sign in to comment.