MilesCranmer commited on
Commit
51eb2dd
1 Parent(s): 0028a88

Add test for incremental install

Browse files
Files changed (1) hide show
  1. .github/workflows/CI.yml +9 -0
.github/workflows/CI.yml CHANGED
@@ -78,6 +78,15 @@ jobs:
78
  COVERALLS_PARALLEL: true
79
  run: coveralls --service=github
80
 
 
 
 
 
 
 
 
 
 
81
  conda_test:
82
  runs-on: ${{ matrix.os }}
83
  defaults:
 
78
  COVERALLS_PARALLEL: true
79
  run: coveralls --service=github
80
 
81
+ incremental_install:
82
+ runs-on: ubuntu-latest
83
+ steps:
84
+ - uses: actions/checkout@v2
85
+ - name: "Build incremental install"
86
+ run: docker build -t pysr -f pysr/test/incremental_install_simulator.dockerfile .
87
+ - name: "Test incremental install"
88
+ run: docker run --rm pysr /bin/bash -c 'python3 -m pysr.test main && python3 -m pysr.test env'
89
+
90
  conda_test:
91
  runs-on: ${{ matrix.os }}
92
  defaults: