Skip to content

Commit

Permalink
drop this commit
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanAdamovNeon committed Sep 23, 2024
1 parent f4cac40 commit f4adf42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
- auto
generate_cost_report:
type: boolean
default: false
default: true
required: false
description: "Flag defining whether cost report should be generated"
env:
Expand All @@ -45,7 +45,7 @@ env:
FAUCET_URL: "${{ secrets.DEVNET_FAUCET_URL }}"
IMAGE: ${{ github.repository_owner }}/neon_tests
DOCKER_HUB_ORG_NAME: ${{ github.repository_owner }}
GENERATE_COST_REPORT: ${{ github.event.inputs.generate_cost_report || 'false' }}
GENERATE_COST_REPORT: ${{ github.event.inputs.generate_cost_report || 'true' }}
jobs:
dockerize:
if: ${{ github.ref_name != 'develop'}}
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
/bin/bash -c "export SOLANA_URL=http://${{ env.SOLANA_IP }}:8899 \
&& export NEON_CORE_API_URL=http://${{ env.SOLANA_IP }}:8085/api \
&& export NEON_CORE_API_RPC_URL=http://${{ env.SOLANA_IP }}:3100 \
&& python3 ./clickfile.py run evm --numprocesses 8 --network terraform --keep-error-log"
&& python3 ./clickfile.py run evm --numprocesses 8 --network terraform --keep-error-log --case test_incorrect_nonce"
- name: Set failed test group to evm
if: failure()
run: echo "FAILED_TEST_GROUP=evm" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion clickfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def run(
if network == "mainnet":
command = "py.test integration/tests/basic -m mainnet"
else:
command = "py.test integration/tests/basic"
command = "py.test integration/tests/basic/erc/test_ERC20SPL.py integration/tests/basic/erc/test_ERC721.py"
if numprocesses:
command = f"{command} --numprocesses {numprocesses} --dist loadgroup"
elif name == "tracer":
Expand Down

0 comments on commit f4adf42

Please sign in to comment.