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

Commit

Permalink
Merge pull request #3 from Accruent/v1
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
Wolfe1 authored Jun 16, 2022
2 parents c3cf50a + e754744 commit 45ab77b
Show file tree
Hide file tree
Showing 16 changed files with 14 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ body:
attributes:
label: RobotFramework-ApplicationLibrary version (tag)
description: What version of RobotFramework-ApplicationLibrary are you using?
placeholder: 2.13.1? Please use the full tag, avoid "latest"
placeholder: 1.0.1? Please use the full tag, avoid "latest"
validations:
required: true
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
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ 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
uses: github/codeql-action/init@v2
# Override language selection by uncommenting this and choosing your languages
# with:
# languages: go, javascript, csharp, python, cpp, java

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -44,4 +44,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
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=ApplicationLibrary -v
- name: Coveralls
env:
Expand Down
2 changes: 1 addition & 1 deletion docs/DesktopLibraryDocumentation.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/MobileLibraryDocumentation.html

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
robotframework==5.0.1
robotframework-seleniumlibrary==5.1.3
selenium==3.141.0
python-dateutil==2.8.2
robotframework-appiumlibrary==1.6.3
psutil==5.9.1
Binary file added samples/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion samples/Default/Preferences

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(name='robotframework-applicationlibrary',
version=version.VERSION,
description='Robot Framework mini-framework.',
description='Robot Framework framework for mobile and desktop testing.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Accruent/robotframework-applicationlibrary',
Expand Down
Empty file removed src/ApplicationLibrary/__init__.py
Empty file.
Empty file removed src/__init__.py
Empty file.
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
2 changes: 1 addition & 1 deletion test/Helpers/webdriverremotemock.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Taken from robotframework-appiumlibrary
# Code from robotframework-appiumlibrary for mocking the webdriver

import logging
import sys
Expand Down
File renamed without changes.
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 45ab77b

Please sign in to comment.