Skip to content

Commit 29b0aeb

Browse files
committed
Remove pull request run.
1 parent b73212c commit 29b0aeb

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/docs_build_and_deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ on:
1111
- main
1212
tags:
1313
- 'v*'
14-
pull_request:
1514
workflow_dispatch:
1615

1716
# Cancel in-progress runs if a new run is triggered, except for main branch.

tests/quick_make_project.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
from test_utils import quick_create_project
1+
import test_utils
2+
from tests_transfers.file_conflicts_pathtable import get_pathtable
23

3-
base_path = r"C:/Users/Joe/work/git-repos/forks/yxtuix/joe"
4+
base_path = r"C:\Users\Jzimi\data\big-test-project"
45

5-
quick_create_project(base_path)
6+
pathtable = get_pathtable(base_path)
7+
8+
for i in range(pathtable.shape[0]):
9+
filepath = pathtable["base_folder"][i] / pathtable["path"][i]
10+
filepath.parents[0].mkdir(parents=True, exist_ok=True)
11+
test_utils.write_file(filepath, contents="test_entry")

0 commit comments

Comments
 (0)