Skip to content

Commit

Permalink
Bump neofs-rest-gw v0.10.1 -> v0.11.0
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeniy Zayats <[email protected]>
  • Loading branch information
Evgeniy Zayats committed Sep 10, 2024
1 parent 2e9980f commit 1643d0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
uses: dsaltares/[email protected]
with:
repo: 'nspcc-dev/neofs-rest-gw'
version: 'tags/v0.10.1'
version: 'tags/v0.11.0'
file: 'neofs-rest-gw-linux-amd64'
target: 'neofs-testcases/neofs-rest-gw'

Expand Down Expand Up @@ -233,11 +233,11 @@ jobs:

################################################################
- name: Run tests
timeout-minutes: 480
timeout-minutes: 240
env:
ALLURE_RESULTS_DIR: ${{ env.ALLURE_RESULTS_DIR }}
run: |
source venv.pytest/bin/activate && pytest --log-cli-level error --alluredir=${GITHUB_WORKSPACE}/allure-results pytest_tests/tests
source venv.pytest/bin/activate && pytest -s --alluredir=${GITHUB_WORKSPACE}/allure-results pytest_tests/tests
working-directory: neofs-testcases

################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ binaries:

neofs_rest_gw:
repo: 'nspcc-dev/neofs-rest-gw'
version: 'v0.10.1'
version: 'v0.11.0'
file: 'neofs-rest-gw-linux-amd64'

neo_go:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def generate_credentials(self, gw_endpoint: str, verb="PUT", wallet_connect=Fals
postfix = b"\x00\x00"
decoded_token_bytes = base64.standard_b64decode(token)
encoded_token_bytes = base64.standard_b64encode(decoded_token_bytes)
raise AssertionError("CHECK IF IT CAUSES HANGING")
salt = os.urandom(16)
hex_salt = binascii.hexlify(salt)
msg_len = len(hex_salt) + len(encoded_token_bytes)
Expand Down

0 comments on commit 1643d0a

Please sign in to comment.