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

Commit

Permalink
Update copyright years
Browse files Browse the repository at this point in the history
  • Loading branch information
ramosbugs committed Jan 2, 2024
1 parent 496fe85 commit 1e31ff9
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_unflakable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Unflakable plugin for PyTest."""

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

import argparse
import logging
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_unflakable/_api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Unflakable API."""

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

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion src/pytest_unflakable/_git.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Developer Innovations, LLC
# Copyright (c) 2022-2024 Developer Innovations, LLC

import logging
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_unflakable/_plugin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Plugin implementation."""

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

import logging
from datetime import datetime, timezone
Expand Down
2 changes: 2 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2022-2024 Developer Innovations, LLC

import pytest

pytest.register_assert_rewrite('tests.common')
3 changes: 2 additions & 1 deletion tests/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Tests for pytest_unflakable plugin."""
# Copyright (c) 2022-2024 Developer Innovations, LLC

import gzip
import hashlib
# Copyright (c) 2022-2023 Developer Innovations, LLC
import itertools
import json
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Developer Innovations, LLC
# Copyright (c) 2022-2024 Developer Innovations, LLC

from typing import Generator
from unittest.mock import patch
Expand Down
2 changes: 1 addition & 1 deletion tests/test_unflakable.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for pytest_unflakable plugin."""

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

import os
import platform
Expand Down

0 comments on commit 1e31ff9

Please sign in to comment.