Skip to content

Commit 63d3123

Browse files
committed
drop "Unit tests" step in CircleCI workflow
we already run the unit tests in the `jl_test`, we save 2-3 minutes of CI time by dropping `ci_prepare.jl` and replacing it by `Pkg.instantiate()`
1 parent 5ae3857 commit 63d3123

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

.circleci/config.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,10 @@ jobs:
3333
echo "CIRCLE_REPOSITORY_URL: ${CIRCLE_REPOSITORY_URL}"
3434
echo $CIRCLE_JOB > circlejob.txt
3535
36-
- run:
37-
name: 🔎 Unit tests
38-
command: |
39-
julia test/ci_prepare.jl
40-
4136
- run:
4237
name: ⚙️ Integration tests
4338
command: |
39+
julia --project -e 'import Pkg; Pkg.instantiate(); Pkg.update();'
4440
python -m venv venv
4541
. venv/bin/activate
4642
pip install --upgrade pip wheel

test/ci_prepare.jl

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)