Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Tests: Unique filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
iopapamanoglou committed Nov 11, 2024
1 parent 384bbfa commit 50ccb0d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions scripts/find_duplicate_test_files.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

parent_dir=$(dirname "$0")/..
test_dir="$parent_dir/test"

# find all files in test_dir ending in .py
# make sure the filenames are unique
find "$test_dir" -type f -name "*.py" -exec basename {} \; | sort | uniq -d
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_symbol_types(name: str, module):
)
],
)
@pytest.mark.timeout(60) # TODO lower
# @pytest.mark.timeout(60) # TODO lower
def test_init_args(name: str, module):
"""Make sure we can instantiate all classes without error"""

Expand Down

0 comments on commit 50ccb0d

Please sign in to comment.