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

Commit

Permalink
Potential fix for CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
byt3bl33d3r committed Sep 20, 2020
1 parent c9cc0c7 commit f66fa44
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 969 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ tests:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude cme/thirdparty/*,cme/data/*

reqs:
poetry export -f requirements.txt -o requirements.txt
poetry export --dev -f requirements.txt -o requirements-dev.txt
poetry export --without-hashes -f requirements.txt -o requirements.txt
poetry export --without-hashes --dev -f requirements.txt -o requirements-dev.txt
5 changes: 2 additions & 3 deletions build_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@ def build_cme():
shutil.rmtree("bin")
shutil.copytree("cme", "build/cme")

subprocess.check_call(
subprocess.run(
[sys.executable, "-m", "pip", "install", "-r", "requirements.txt" ,"-t", "build"],
stdout=sys.stdout,
stderr=subprocess.STDOUT,
check=True
)

#[shutil.rmtree(p) for p in Path("build").glob("**/__pycache__")]
Expand Down
Loading

0 comments on commit f66fa44

Please sign in to comment.