JeffryCA
JeffryCA
Setup using the docker image oittaa/gcp-storage-emulator (docker-compose). ```docker ... storage: image: oittaa/gcp-storage-emulator volumes: - ./.cloudstorage:/storage ports: - 9023:9023 environment: - PORT=9023 ``` and tests: ```python @pytest.fixture(scope="session", autouse=True) def setup_local_storage_emulator(): client...
Setup: 1) Create 2 models and db (postgres) 2) init migrations ... 3) add a fields.OneToOneRelation(..., null=False) to one of the models 4) migrate 5) upgrade Results in: -- upgrade...
When using any test net endpoint the process of deploying a contract does not work: These are some of my logs: I added: ``` def await_confirmation(client, signatures, max_timeout=60, target=20, finalized=True):...
**Describe the bug** I am trying to create a field that has auto increment but is not a pk. I am trying to create an Object like IntField with the...