Skip to content

Commit

Permalink
Removing dependency on test helpers in determine_test files
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishticode committed Nov 30, 2022
1 parent 65f7783 commit 3c06fa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions determine_test_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
from random import shuffle
import bz2
import _pickle as cPickle
from ivy_tests.test_ivy.helpers.available_frameworks import available_frameworks

# Shared Map
tests = {}
BACKENDS = available_frameworks
BACKENDS = ["numpy", "jax", "tensorflow", "torch"]

os.system("git config --global --add safe.directory /ivy")
N = 32
Expand Down
3 changes: 1 addition & 2 deletions determine_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
import bz2
import _pickle as cPickle
import sys
from ivy_tests.test_ivy.helpers.available_frameworks import available_frameworks

BACKENDS = available_frameworks
BACKENDS = ["numpy", "jax", "tensorflow", "torch"]


def get_all_tests():
Expand Down

0 comments on commit 3c06fa6

Please sign in to comment.