Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ parameters:
# NOTE: Do not update the `geth_version` manually. It is updated during the
# integration test fixture generation.
geth_version:
default: "1.16.1"
default: "1.16.2"
type: string
go_version:
default: "1.24.1"
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -376,13 +376,13 @@ Geth Fixtures

.. code:: sh

$ python -m geth.install v1.16.1
$ python -m geth.install v1.16.2

2. Specify the Geth binary and run the fixture creation script (from within the web3.py directory):

.. code:: sh

$ GETH_BINARY=~/.py-geth/geth-v1.16.1/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py
$ GETH_BINARY=~/.py-geth/geth-v1.16.2/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py

3. The output of this script is your fixture, a zip file, which is now stored in ``/tests/integration/``.
The ``/tests/integration/go_ethereum/conftest.py`` and
Expand Down
1 change: 1 addition & 0 deletions newsfragments/1162.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add testing against Geth v1.16.2
Binary file removed tests/integration/geth-1.16.1-fixture.zip
Binary file not shown.
Binary file added tests/integration/geth-1.16.2-fixture.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/integration/go_ethereum/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
)

KEYFILE_PW = "web3py-test"
GETH_FIXTURE_ZIP = "geth-1.16.1-fixture.zip"
GETH_FIXTURE_ZIP = "geth-1.16.2-fixture.zip"


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion web3/tools/benchmark/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
kill_proc_gracefully,
)

GETH_FIXTURE_ZIP = "geth-1.16.1-fixture.zip"
GETH_FIXTURE_ZIP = "geth-1.16.2-fixture.zip"


class GethBenchmarkFixture:
Expand Down