Skip to content

Commit

Permalink
chore: testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
salman2013 committed Apr 18, 2024
1 parent e15846a commit 13c2af3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Copy Python requirements file
run: |
for req_file in "requirements/edx/base.txt" "requirements/base.txt" "requirements.txt"; do
for req_file in "requirements/edx/kernel.in"; do
if [ -f "$req_file" ]; then
cp "$req_file" /tmp/unpack_reqs/openedx/edx-platform/base.txt
echo "Python requirements file found: $req_file"
Expand Down
9 changes: 4 additions & 5 deletions scripts/find_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,10 @@ def main(dirs=None, org=None):
Analyze the requirements in all of the directories mentioned on the command line.
If arguments have newlines, treat each line as a separate directory.
"""
import pdb; pdb.set_trace()
if dirs is None:
repo_dir = sys.argv[1]
org_flag_index = sys.argv.index("--org")
org = sys.argv[org_flag_index + 1]
# if dirs is None:
# repo_dir = sys.argv[1]
# org_flag_index = sys.argv.index("--org")
# org = sys.argv[org_flag_index + 1]
#print(f"Creating new work directory: {WORK_DIR}")
#shutil.rmtree(WORK_DIR, ignore_errors=True)
repo_urls = set()
Expand Down

0 comments on commit 13c2af3

Please sign in to comment.