Skip to content

Commit

Permalink
Merge pull request #233 from dipjyotimetia/deployments
Browse files Browse the repository at this point in the history
updating actions and reporting
  • Loading branch information
dipjyotimetia authored Aug 22, 2021
2 parents 6c6ee92 + 92f27d4 commit 96695d9
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,18 @@ jobs:
env:
USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
ACCESS: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
- name: Build with Gradle
- name: Gradle Run Test
run: ./gradlew task e2e
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
- name: Generate Report
run: ./gradlew task allureReport
- uses: actions/upload-artifact@v2
with:
name: allure-report
path: build/reports/allure-report
- uses: actions/upload-artifact@v2
with:
name: extent-report
path: Reports
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.gradle
.idea
.allure
allure-results
build
out
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Mobile Test Framework

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/6aaf27fdb62e4792ba5a3a9841ce13ee)](https://www.codacy.com/app/dipjyotimetia/MobileTestFramework?utm_source=github.com&utm_medium=referral&utm_content=TestautoDev/MobileTestFramework&utm_campaign=Badge_Grade)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/8958948e2b0048a785417344e0dffe43)](https://www.codacy.com/gh/dipjyotimetia/MobileTestFramework/dashboard?utm_source=github.com&utm_medium=referral&utm_content=dipjyotimetia/MobileTestFramework&utm_campaign=Badge_Grade)
![CI](https://github.com/dipjyotimetia/MobileTestFramework/workflows/CI/badge.svg)
### Full fledged Mobile, API and Database framework using appium and rest-assured
### Full-fledged Mobile, API and Database framework using appium and rest-assured

<img src="https://github.com/dipjyotimetia/MobileTestFramework/blob/master/docs/FrameworkArchitecture.png" width="700">

Expand Down Expand Up @@ -56,7 +56,8 @@ $ import project from intelij as a gradle project
$ gradle clean
$ gradle build
$ gradle task E2E
$ allureServe
$ gradle allureReport
$ gradle allureServe
```
### Execution Gif
![browserstack](https://github.com/dipjyotimetia/MobileTestFramework/blob/master/docs/gif/videogif.gif)
Expand Down
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,12 @@ buildscript {
}
}

def allureVersion = "2.14.0"

allure {
version = allureVersion
version = '2.14.0'
useTestNG {
version = allureVersion
version = '2.14.0'
}
downloadLink = 'https://dl.bintray.com/qameta/maven/io/qameta/allure/allure-commandline/$allureVersion/allure-commandline-$allureVersion.zip'
downloadLink = 'https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2.14.0/allure-commandline-2.14.0.zip'
}

dependencies {
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
systemProp.sonar.host.url=http://localhost:9000
systemProp.sonar.login=

0 comments on commit 96695d9

Please sign in to comment.