Skip to content

Commit

Permalink
skip issue304 test in MacOS env
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Mar 20, 2023
1 parent 1e38fce commit 69e56e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_issue304.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
@author: th
"""
import asyncio
import unittest
import pandas as pd
from selenium.webdriver import ActionChains
from selenium.webdriver.common.by import By

from sys import platform
import justpy as jp
from tests.base_selenium_test import BaseSeleniumTest
from selenium.webdriver.support import expected_conditions as EC
Expand All @@ -26,7 +25,8 @@ async def asyncTearDown(self):
self.browser.close()
await self.server.stop()

async def test_issue_30(self):
@unittest.skipIf(platform == "darwin","unreliable on MacOS")
async def test_issue_304(self):
"""
test when the issue occurs that input and input display differ
"""
Expand Down

0 comments on commit 69e56e7

Please sign in to comment.