This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import logging | |
import typing as t | |
from contextlib import contextmanager | |
import fastapi | |
import pytest | |
from httpx import AsyncClient | |
from mixer.backend.sqlalchemy import Mixer | |
from pytest_mock import MockerFixture |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.core.management.commands.runserver import Command as runserver | |
runserver.default_port = "8008" | |
runserver.default_addr = "0.0.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# WANT_JSON | |
use strict; | |
#use warnings; | |
use Mojo::Cloudflare; | |
use Mojo::JSON; | |
use Mojo::Util qw/slurp/; |