Skip to content

Commit

Permalink
Fix circleci (#73)
Browse files Browse the repository at this point in the history
* Upgrade Pip, fix examples

* Start runnin g Stack Example
  • Loading branch information
chaithyagr authored Jan 22, 2020
1 parent 5a394e6 commit c39764b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip
pushd ../
git clone https://github.com/CEA-COSMIC/pysap
cd pysap
Expand All @@ -44,6 +45,7 @@ jobs:
name: Running CircleCI tests
command: |
. venv/bin/activate
pip install --upgrade pip
pip install Cython
pip install -e .
python .circleci/test_script.py
Expand Down
5 changes: 0 additions & 5 deletions .circleci/test_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,5 @@

for path in example_files:
print("-- ", path)
if os.path.basename(path) == 'non_cartesian_reconstruction_stack_3d.py':
# TODO speed up and enable this example
print("Skipping Stack Example for now, this must be re-enabled after "
"speed up")
continue
cmd = ["python3", path]
subprocess.check_call(cmd, env=os.environ)

0 comments on commit c39764b

Please sign in to comment.