Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 1e31ff9

Browse files
committed
Update copyright years
1 parent 496fe85 commit 1e31ff9

File tree

9 files changed

+11
-8
lines changed

9 files changed

+11
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2023 Developer Innovations, LLC
3+
Copyright (c) 2022-2024 Developer Innovations, LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/pytest_unflakable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Unflakable plugin for PyTest."""
22

3-
# Copyright (c) 2022-2023 Developer Innovations, LLC
3+
# Copyright (c) 2022-2024 Developer Innovations, LLC
44

55
import argparse
66
import logging

src/pytest_unflakable/_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Unflakable API."""
22

3-
# Copyright (c) 2022-2023 Developer Innovations, LLC
3+
# Copyright (c) 2022-2024 Developer Innovations, LLC
44

55
from __future__ import annotations
66

src/pytest_unflakable/_git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2023 Developer Innovations, LLC
1+
# Copyright (c) 2022-2024 Developer Innovations, LLC
22

33
import logging
44
import sys

src/pytest_unflakable/_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Plugin implementation."""
22

3-
# Copyright (c) 2022-2023 Developer Innovations, LLC
3+
# Copyright (c) 2022-2024 Developer Innovations, LLC
44

55
import logging
66
from datetime import datetime, timezone

tests/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) 2022-2024 Developer Innovations, LLC
2+
13
import pytest
24

35
pytest.register_assert_rewrite('tests.common')

tests/common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
"""Tests for pytest_unflakable plugin."""
2+
# Copyright (c) 2022-2024 Developer Innovations, LLC
3+
24
import gzip
35
import hashlib
4-
# Copyright (c) 2022-2023 Developer Innovations, LLC
56
import itertools
67
import json
78
import os

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2023 Developer Innovations, LLC
1+
# Copyright (c) 2022-2024 Developer Innovations, LLC
22

33
from typing import Generator
44
from unittest.mock import patch

tests/test_unflakable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tests for pytest_unflakable plugin."""
22

3-
# Copyright (c) 2022-2023 Developer Innovations, LLC
3+
# Copyright (c) 2022-2024 Developer Innovations, LLC
44

55
import os
66
import platform

0 commit comments

Comments
 (0)