john-dupuy

Results 10 issues of john-dupuy

**Steps to reproduce** 1. Create two files, `__init__.py` and `blah.py`. `blah.py` ```python class MyBlahClass: pass ``` `__init__.py` ```python from blah import MyBlahClass __all__ = ["MyBlahClass"] ``` 2. Run ruff **Expected...

enhancement

The tests in: https://github.com/ManageIQ/integration_tests/blob/770c5eda5f8199b0f1567bcd1d570097073f7833/cfme/tests/webui/test_advanced_search.py#L298-L312 https://github.com/ManageIQ/integration_tests/blob/770c5eda5f8199b0f1567bcd1d570097073f7833/cfme/tests/webui/test_advanced_search.py#L331-L341 Will soon be broken due to the collection changes incoming in #9317. Leaving the refactor of these tests to @psimovec. They will be blocked until...

fix-test
collections-conversion

When you try to register a view in a new module, it is not picked up as a destination for what it is registered against. For instance, consider the following...

enhancement

Right now the behavior of `validate_all` and `Catalog.validate_all` is to return only the first problem it encounters in a STAC catalog. It would be nice if there was some flag...

enhancement

Aims to address: https://github.com/pytest-dev/pytest-rerunfailures/issues/109. Consider the following test case: ```python import pytest import random from pytest_lazyfixture import lazy_fixture @pytest.fixture def f_payload(): yield random.randint(1, 100) @pytest.mark.parametrize("payload", [lazy_fixture("f_payload")]) def test_lazy_fixture(payload): print(f"randomInt: {payload}")...

@vermeulendivan thanks for the fix. In a future PR could you add a test case for this? _Originally posted by @john-dupuy in https://github.com/planetlabs/qgis-planet-plugin/issues/94#issuecomment-1369916295_

Env Details: Ubuntu 20.04 QGIS versions tested: 3.24.0, 3.16.0 Steps to reproduce: 1) Install QGIS plugin v2.2.0 2) Login to plugin 3) Plugins>Manage plugins>Downgrade Planet Explorer 4) Try to login...

bug

In the menu toolbar there are two buttons that open search dock widget: - magnifying glass - map ![Screenshot from 2022-02-28 08-28-40](https://user-images.githubusercontent.com/44065123/156038428-217c56f4-9252-4ae3-8499-7930ada5dede.png) These both open the same dock widget -...

enhancement

Steps to reproduce: 1) Load up the planet plugin and sign in to an account that has some saved searches 2) Load a saved search that has a legacy asset...

bug

RFC = Requested feature consideration Right now, the workflow for searching for daily imagery looks like: 1) Select some AOI 2) (optional) apply filters 3) Hit the "Search" button The...

enhancement