Skip to content

Commit

Permalink
chore: ignore ruff commit for git blame
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed May 7, 2024
1 parent 51699f1 commit eb3799c
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 16 deletions.
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
51699f13b5e9044cfde4b43811900e8557f1db7f
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ minversion = "6.0"
testpaths = ["tests", "src"]
norecursedirs = [".env", "data", ".github", ".vscode"]
console_output_style = "count"
addopts = "--cov-branch --cov=projectname --cov-report term --cov-report xml:cov.xml --instafail"
addopts = "--cov-branch --cov=projectname --cov-report term --cov-report xml:cov.xml --instafail -p no:faulthandler"
3 changes: 1 addition & 2 deletions tests/test_arcgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@

import unittest
from time import time
from unittest.mock import Mock, call, patch

import pytest
import requests
from mock import Mock, call, patch

from forklift.arcgis import LightSwitch


Expand Down
3 changes: 1 addition & 2 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@

import unittest
from os import remove

from mock import patch
from unittest.mock import patch

from forklift import config

Expand Down
5 changes: 2 additions & 3 deletions tests/test_crate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@

import unittest
from os import path
from unittest.mock import patch

from arcpy import SpatialReference, env
from mock import patch
from xxhash import xxh64

from forklift.models import Crate, names_cache
from xxhash import xxh64

current_folder = path.dirname(path.abspath(__file__))
test_gdb = path.join(current_folder, "data", "test_crate", "data.gdb")
Expand Down
3 changes: 1 addition & 2 deletions tests/test_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@
from json import loads
from os import makedirs, remove, rmdir
from os.path import abspath, dirname, exists, join
from unittest.mock import Mock, mock_open, patch

import pytest
from mock import Mock, mock_open, patch

from forklift import config, core, engine
from forklift.models import Crate

Expand Down
3 changes: 1 addition & 2 deletions tests/test_lift.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@

import unittest
from os import path
from unittest.mock import Mock, patch

import arcpy
from mock import Mock, patch

from forklift import core, engine, lift
from forklift.models import Crate, Pallet

Expand Down
3 changes: 1 addition & 2 deletions tests/test_messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
import unittest
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

from mock import patch
from unittest.mock import patch

from forklift import messaging

Expand Down
3 changes: 1 addition & 2 deletions tests/test_pallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@

import unittest
from time import sleep

from mock import patch
from unittest.mock import patch

from forklift.models import Crate, Pallet

Expand Down

0 comments on commit eb3799c

Please sign in to comment.