Skip to content
Snippets Groups Projects
Select Git revision
  • e2c0339137e6153c935f2660691c7cbf88a5dc35
  • main default protected
  • Kelvinrr-patch-3
  • radius_update
  • revert-616-apollo_pan
  • vims
  • 0.10
  • Kelvinrr-patch-2
  • revert-563-minirf_fix
  • Kelvinrr-patch-1
  • 0.9
  • acpaquette-patch-3
  • acpaquette-patch-2
  • acpaquette-patch-1
  • spiceql
  • ci-coverage
  • 0.10.0
  • 0.9.1
  • 0.9.0
  • 0.8.7
  • 0.8.8
  • 0.8.6
  • 0.8.3
  • 0.8.4
  • 0.8.5
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.3
  • 0.7.2
  • 0.7.1
  • 0.7.0
  • 0.6.5
  • 0.6.4
  • 0.6.3
  • 0.6.2
36 results

test_cassini_drivers.py

Blame
    • acpaquette's avatar
      e2c03391
      Pfeffernusse Loading Fixes (#384) · e2c03391
      acpaquette authored
      * Allow ALE to find both caps and not caps metakernels
      
      * Label loading fix when given a PVLModule
      
      * Remove old hard coded sensor_frame_id as kernel updates have fixed this
      
      * Removed sensor_frame_id test as it's no longer being overwritten
      
      * Reverted additional frame removal and updated frame chain with ISIS iak frame rotation
      
      * Made the frame chain construct a completely different frame chain instead of using the frame chain from super
      
      * Reverted old test and added new frame chain test
      
      * Updated spacing and added a doc string
      
      * Added check and test if the IAK frame is loaded
      e2c03391
      History
      Pfeffernusse Loading Fixes (#384)
      acpaquette authored
      * Allow ALE to find both caps and not caps metakernels
      
      * Label loading fix when given a PVLModule
      
      * Remove old hard coded sensor_frame_id as kernel updates have fixed this
      
      * Removed sensor_frame_id test as it's no longer being overwritten
      
      * Reverted additional frame removal and updated frame chain with ISIS iak frame rotation
      
      * Made the frame chain construct a completely different frame chain instead of using the frame chain from super
      
      * Reverted old test and added new frame chain test
      
      * Updated spacing and added a doc string
      
      * Added check and test if the IAK frame is loaded
    setup 855 B
    #!/bin/bash
    
    # Use dev (local) database for backend if not alredy set up
    if [ ! -f services/webapp/db_conf.sh ]; then
        echo "Using dev webapp database settings."
        cp services/webapp/db_conf-dev.sh  services/webapp/db_conf.sh
    else
        echo "Not using dev webapp database settings as settings are already present."
    fi
    
    
    # Use dev certificates if not already set up
    if [ ! -d services/proxy/certificates ]; then
        echo "Using dev certificates."
        cp -a services/proxy/certificates-dev  services/proxy/certificates
    else
        echo "Not using dev certificates as certificates are already present."
    fi
    
    
    # Use dev docker-compose.yml if not already set up
    if [ ! -f docker-compose.yml ]; then
        echo "Using dev docker-compose.yml"
        cp docker-compose-dev.yml docker-compose.yml
    else
        echo "Not using dev docker-compose.yml as already present."
    fi