Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move unit tests to separate directory #262

Merged
merged 1 commit into from
Oct 30, 2024
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
3 changes: 0 additions & 3 deletions modules/terraform-aws-ca-lambda/.pylintrc

This file was deleted.

Empty file.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
from .tls_cert import create_csr_info, create_csr_subject, CaChainResponse, CertificateResponse, Request
from lambda_code.tls_cert.tls_cert import (
create_csr_info,
create_csr_subject,
CaChainResponse,
CertificateResponse,
Request,
)


def test_create_csr_info():
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from cryptography.x509.oid import NameOID

from .types import CsrInfo, Subject
from utils.certs.types import CsrInfo, Subject


# test defaults
Expand Down