Skip to content

Commit

Permalink
test: remove unused ui test files
Browse files Browse the repository at this point in the history
  • Loading branch information
nattb8 committed Nov 20, 2024
1 parent 2fcb28d commit 1a44157
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 176 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
include:
- targetPlatform: StandaloneOSX
runs-on: [self-hosted, macOS]
test_script: ./test_mac.sh
test_script: pytest -xs test/test_mac.py::MacTest
- targetPlatform: StandaloneWindows64
runs-on: [self-hosted, windows]
test_script: pytest -xs test/test_windows.py::WindowsTest
Expand Down
37 changes: 0 additions & 37 deletions sample/Tests/src/device_code_logout.py

This file was deleted.

3 changes: 2 additions & 1 deletion sample/Tests/test/test_mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def login(cls):

# Switch to the new window
all_windows = cls.seleniumdriver.window_handles
new_window = next(window for window in all_windows if window != cls.seleniumdriver.current_window_handle)
new_window = [window for window in all_windows if window != cls.seleniumdriver.current_window_handle][0]
cls.seleniumdriver.switch_to.window(new_window)
print("Switched to new window")

# Wait for email input and enter email
Expand Down
137 changes: 0 additions & 137 deletions sample/Tests/test_mac.sh

This file was deleted.

0 comments on commit 1a44157

Please sign in to comment.