Skip to content

Commit

Permalink
removed gitmodule
Browse files Browse the repository at this point in the history
  • Loading branch information
simongravelle committed Sep 11, 2024
1 parent 54eec8a commit 24225d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_converter.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import numpy as np
import os
import git
#import git

# detect the location of the Git repository
current_path = os.getcwd()
git_repo = git.Repo(current_path, search_parent_directories=True)
git_path = git_repo.git.rev_parse("--show-toplevel")
#current_path = os.getcwd()
#git_repo = git.Repo(current_path, search_parent_directories=True)
#git_path = git_repo.git.rev_parse("--show-toplevel")

# import countoscope
from countoscope import Countoscope

info_trajectory = {
"filename_xyz": git_path+"/datasets/"\
"filename_xyz": "../datasets/"\
+"brownian-particles/2D-homemade/example_dataset.xyz",
"filename_txt": git_path+"/datasets/"\
"filename_txt": "../datasets/"\
+"brownian-particles/2D-homemade/example_dataset.txt",
"expected_mean_of_N": 5,}

Expand Down

0 comments on commit 24225d4

Please sign in to comment.