Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
montezdesousa committed May 15, 2024
1 parent e149f5f commit 8aceda4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions openbb_platform/core/tests/app/test_deprecation.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
"""Test deprecated commands."""

import unittest
import pytest

import pytest
from openbb_core.app.static.package_builder import PathHandler
from openbb_core.app.version import VERSION, get_major_minor


class DeprecatedCommandsTest(unittest.TestCase):
"""Test deprecated commands."""

@pytest.mark.skip("We forgot to deprecate /etf/holdings_performance. Check this endpoint next release.")
@pytest.mark.skip(
"We forgot to deprecate /etf/holdings_performance. Check this endpoint next release."
)
def test_deprecated_commands(self):
"""Test deprecated commands."""
current_major_minor = get_major_minor(VERSION)
Expand Down

0 comments on commit 8aceda4

Please sign in to comment.