Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5201f2a

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/1053_exclude_include_cov_by_regex
2 parents 4ab0f58 + b4d72e3 commit 5201f2a

25 files changed

Lines changed: 38 additions & 34 deletions

.github/scripts/validate_report_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ XSD_DIR="${SCRIPT_DIR}/xsd"
77
XML_JAR_DIR="${SCRIPT_DIR}/lib"
88
#XML Validator
99
XML_VALIDATOR="$XML_JAR_DIR/xml_validator.jar"
10-
HTML_VALIDATOR_URL="https://validator.w3.org/nu/"
10+
HTML_VALIDATOR_URL="http://localhost:8888/"
1111

1212
HTML_FILENAME="coverage.html"
1313
declare -A XML_FILES

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ jobs:
6060
oracle-base: '/opt/oracle'
6161

6262
services:
63+
html_checker:
64+
image: ghcr.io/validator/validator:latest
65+
options: >-
66+
-p 8888:8888
6367
oracle:
6468
image: ${{matrix.oracle-version}}
6569
env:

docs/about/authors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
### utPLSQL v3 Major Contributors
44

docs/about/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# Version Information
44

docs/about/project-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# utPLSQL Project Details
44

docs/about/support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# How to get support
44

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# Introduction to utPLSQL
44

@@ -31,7 +31,7 @@ The framework follows industry standards and best patterns of modern Unit Testin
3131

3232
Have a look at our [demo project](https://github.com/utPLSQL/utPLSQL-demo-project/).
3333

34-
It uses [Travis CI](https://travis-ci.org/utPLSQL/utPLSQL-demo-project) to build on every commit, runs all tests, publishes test results and code coverage to [SonarQube](https://sonarqube.com/dashboard?id=utPLSQL%3AutPLSQL-demo-project%3Adevelop).
34+
It uses [Travis CI](https://travis-ci.org/utPLSQL/utPLSQL-demo-project) to build on every commit, runs all tests, publishes test results and code coverage to [SonarCloud](https://sonarcloud.io/project/overview?id=utPLSQL:utPLSQL-demo-project).
3535

3636
# Three steps
3737

docs/userguide/advanced_data_comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# Advanced data comparison
44

docs/userguide/annotations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# Annotations
44

@@ -127,7 +127,7 @@ end;
127127
| `--%suite(<description>)` | Package | Mandatory. Marks package as a test suite. Optional suite description can be provided (see `displayname`). |
128128
| `--%suitepath(<path>)` | Package | Similar to java package. The annotation allows logical grouping of suites into hierarchies. |
129129
| `--%displayname(<description>)` | Package/procedure | Human-readable and meaningful description of a context/suite/test. Overrides the `<description>` provided with `suite`/`test`/`context` annotation. This annotation is redundant and might be removed in future releases. |
130-
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can by provided (see `displayname`). |
130+
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can be provided (see `displayname`). |
131131
| `--%throws(<exception>[,...])`| Procedure | Denotes that the annotated test procedure must throw one of the exceptions provided. Supported forms of exceptions are: numeric literals, numeric constant names, exception constant names, predefined Oracle exception names. |
132132
| `--%beforeall` | Procedure | Denotes that the annotated procedure should be executed once before all elements of the suite. |
133133
| `--%beforeall([[<owner>.]<package>.]<procedure>[,...])` | Package | Denotes that the mentioned procedure(s) should be executed once before all elements of the suite. |

docs/userguide/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3889--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3908--develop-blue.svg)
22

33
# Best Practices
44

0 commit comments

Comments
 (0)