Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to new structure #30

Merged
merged 6 commits into from
Nov 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export PYTHONPATH=$PWD/submodules/robupy
export PYTHONPATH=$PYTHONPATH:$PWD/submodules/ruspy
export PYTHONPATH=$PYTHONPATH:$PWD/submodules/zurcher-data
export PYTHONPATH=$PYTHONPATH:$PWD/python
export PYTHONPATH=$PYTHONPATH:$PWD/python/figures_application_scripts

# We need to be able execute our auxilary scripts
export PATH=$PWD/bin:$PATH
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Continuous Integration

on: [push]

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: ruspy_analysis
environment-file: environment.yml
python-version: 3.8
auto-activate-base: false
- name: execute notebooks
shell: bash -l {0}
run: |
export PATH="$PATH:/usr/share/miniconda/bin"
source .envrc
git submodule init
git submodule update
execute-notebooks
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

21 changes: 11 additions & 10 deletions configurations/ipython/profile_default/startup/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@
import pandas as pd
import numpy as np

from figures_application_scripts.transition_probabilities import *
from global_vals_funcs import *
from figures_application_scripts.maintenace_probabilities import *
from figures_application_scripts.demonstration import *
from figures_application_scripts.threshold_plot import *
from figures_application_scripts.performance_plots import *
from figures_application_scripts.validation import *

from figures_introduction import *
from urn_illustrations import *
from scripts_figures.ex_post.transition_probabilities import *
from scripts_figures.global_vals_funcs import *
from scripts_figures.ex_post.maintenace_probabilities import *
from scripts_figures.ex_post.demonstration import *
from scripts_figures.ex_post.threshold_plot import *
from scripts_figures.ex_post.performance_plots import *
from scripts_figures.ex_post.observations import *
from scripts_figures.ex_ante import *

from scripts_figures.introduction import *
from scripts_figures.urn_illustrations import *


extract_zips()
Expand Down
Loading
Loading