Lance A. Brown
Lance A. Brown
This is the github issue where I found the clue I needed: https://github.com/k3s-io/k3s/issues/4188#issuecomment-982503626
Also this Rancher K3S entry: https://rancher.com/docs/k3s/latest/en/advanced/#enabling-vxlan-on-ubuntu-21.10+-on-raspberry-pi
Seconded.
I'm aware `require` is a special keyword, which is why I mentioned the bit about it being a javascript command. I tried putting your tsconfig.json file in the root dir...
And as it turns out, the `types-dnscontrol.d.ts` info for `require_glob` incorrectly demands the second argument, `recursive`, which can be left off to take its default value as well. I discovered...
@cafferata The fix for require_glob doesn't fix the mistaken typescript error for the `require` call. Did you close this because that can't be fixed?
This bug just blew up the tests for our AWS python lambda. Looks like `moto` makes pytest 8.4.0 unhappy as well. import pytest import boto3 from moto import mock_aws @mock_aws...
Sounds like I need to use the context_manager version of mock_aws instead of the decorator, as below. The `test_context_manager` test passes. import pytest import boto3 from moto import mock_aws @mock_aws...
I'll check that with moto. Maybe @pytest.fixture @mock_aws def mocked_ses(): ... will work.