Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Merge 4e70719 into c3cf50a
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfe1 committed Jun 15, 2022
2 parents c3cf50a + 4e70719 commit 8c1bdb3
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[run]
include = src/*
5 changes: 2 additions & 3 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
categories:
- title: '🚀 Features'
labels:
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
Expand All @@ -9,7 +9,7 @@ categories:
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
labels:
labels:
- 'dependencies'
- 'maintenance'
- 'docs'
Expand All @@ -19,4 +19,3 @@ categories:
template: |
## What’s Changed
$CHANGES
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Run Unit Tests
run: |
pytest --cov=src -v
pytest --cov=src/ApplicationLibrary -v
- name: Coveralls
env:
Expand Down
2 changes: 1 addition & 1 deletion test/Desktop/test_desktop.py
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ def test_wait_for_and_scroll_from_element(self):
@patch("selenium.webdriver.common.touch_actions.TouchActions.double_tap")
def test_double_tap(self, double_tap):
mock_desk = MagicMock()
DesktopLibrary.double_tap(mock_desk, "some_locator")
DesktopLibrary.double_tap(mock_desk, "some_locator")
double_tap.assert_called_with(unittest.mock.ANY)

@patch("selenium.webdriver.common.touch_actions.TouchActions.double_tap")
Expand Down
Empty file added test/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.14.3"
VERSION = "1.0.0"

0 comments on commit 8c1bdb3

Please sign in to comment.