Skip to content
Open
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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PYTHONPATH=.
27 changes: 27 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
certifi = "==2020.6.20"
cffi = "==1.14.2"
chardet = "==3.0.4"
colorama = "==0.4.3"
cryptography = "==3.3.2"
idna = "==2.10"
iso8601 = "==0.1.12"
pycparser = "==2.20"
python-dateutil = "==2.8.1"
requests = "==2.24.0"
securesystemslib = "==0.20.1"
six = "==1.15.0"
tuf = "==0.14.0"
urllib3 = "==1.25.10"
PyNaCl = "==1.4.0"
flake8 = "*"

[requires]
python_version = "3.9"
225 changes: 225 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions build-all.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from fixtures import (
simple
)
from unittest import mock


@mock.patch('time.time', mock.MagicMock(return_value=1577836800))
def build_all():
simple.build()


build_all()
Loading