Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
yshyn-iohk committed Apr 29, 2024
2 parents 0a75309 + 88806d9 commit dea2993
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Extract test results
id: analyze_test_results
if: github.ref_name == 'main'
if: github.ref_name == 'main' && always()
run: |
JSON_RESULTS="target/site/serenity/serenity-summary.json"
CONCLUSION=failure
Expand Down Expand Up @@ -127,14 +127,14 @@ jobs:
check_name: "Integration Test Results"

- name: Upload artifacts
if: github.ref_name == 'main' || steps.analyze_test_results.outputs.conclusion == 'failure'
if: github.ref_name == 'main' || failure()
uses: actions/upload-artifact@v4
with:
name: integration-tests-result
path: ${{ env.REPORTS_DIR }}

- name: Slack Notification
if: github.ref_name == 'main' && steps.analyze_test_results.outputs.conclusion == 'failure'
if: github.ref_name == 'main' && failure()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_COLOR: ${{ steps.analyze_test_results.outputs.conclusion }}
Expand Down
12 changes: 6 additions & 6 deletions cloud-agent/client/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8

"""
Prism Agent
Identus Cloud Agent
No description provided
Expand All @@ -11,7 +11,7 @@

from setuptools import setup, find_packages # noqa: H301

NAME = "open-enterprise-agent-python-client"
NAME = "cloud-agent-client-python"
VERSION = "0.0.1"

REQUIRES = [
Expand All @@ -26,16 +26,16 @@
setup(
name=NAME,
version=VERSION,
description="Prism Agent Client",
description="Identus Cloud Agent Client",
author="Allain Magyar",
author_email="",
url="https://github.com/hyperledger-labs/open-enterprise-agent",
keywords=["Prism Agent"],
url="https://github.com/hyperledger/identus-cloud-agent",
keywords=["Identus Cloud Agent Client"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""\
Prism-agent models generated from OpenAPI Specification
Identus Cloud Agent models generated from the OpenAPI Specification
"""
)
2 changes: 1 addition & 1 deletion tests/integration-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ Here is an example of the agent configuration for sandbox environment:
1. Docker and Docker Compose are installed.
2. JDK >=17.
3. IntelliJ IDEA with Kotlin and Cucumber plugins.
4. `ATALA_GITHUB_ACTOR` and `ATALA_GITHUB_TOKEN` environment variables are set to download dependencies.
4. `GITHUB_ACTOR` and `GITHUB_TOKEN` environment variables are set to download dependencies.

> If you have troubles with JDK version incompatibilities in IntelliJ IDEA,
> make sure JDK is set not only for the project itself, but also for the Gradle daemon.
Expand Down
6 changes: 3 additions & 3 deletions tests/integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ repositories {
maven {
url = uri("https://maven.pkg.github.com/hyperledger/identus-cloud-agent/")
credentials {
username = System.getenv("ATALA_GITHUB_ACTOR")
password = System.getenv("ATALA_GITHUB_TOKEN")
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
Expand All @@ -33,7 +33,7 @@ dependencies {
testImplementation("io.ktor:ktor-server-netty:2.3.0")
testImplementation("io.ktor:ktor-client-apache:2.3.0")
// RestAPI client
testImplementation("org.hyperledger.identus:identus-kotlin-client:1.32.0")
testImplementation("org.hyperledger.identus:cloud-agent-client-kotlin:1.32.0")
// Test helpers library
testImplementation("io.iohk.atala:atala-automation:0.3.2")
// Hoplite for configuration
Expand Down

0 comments on commit dea2993

Please sign in to comment.