Skip to content

Commit

Permalink
Disable mssqltest
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenchrist committed Aug 8, 2024
1 parent 8f9034e commit 084684a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_test_sqlserver.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import logging
import os

import pytest
from testcontainers.mssql import SqlServerContainer
Expand All @@ -25,7 +24,8 @@ def remove_container():
request.addfinalizer(remove_container)


@pytest.mark.skipif(not os.getenv("CI"), reason="Skipping test outside CI/CD environment")
@pytest.mark.skip(reason="Unskip when bug is fixed: https://github.com/testcontainers/testcontainers-python/issues/666")
# @pytest.mark.skipif(not os.getenv("CI"), reason="Skipping test outside CI/CD environment")
def test_test_sqlserver(mssql_container, monkeypatch):
monkeypatch.setenv("DATACONTRACT_SQLSERVER_USERNAME", sql_server.username)
monkeypatch.setenv("DATACONTRACT_SQLSERVER_PASSWORD", sql_server.password)
Expand Down

0 comments on commit 084684a

Please sign in to comment.