Commit e35bafab authored by Madhur Panwar's avatar Madhur Panwar
Browse files

Merge branch 'Madhur' into dev

parents af790b18 c3a839d9
Loading
Loading
Loading
Loading
Loading
+104 −0
Original line number Diff line number Diff line
@@ -18,3 +18,107 @@ output.xlsx
*.rar
*.pdf
*.png

build/lib/pyehub/__init__\.py

build/lib/pyehub/BatchRunExcel\.py

build/lib/pyehub/batchruns_Test\.py

build/lib/pyehub/batchruns\.py

build/lib/pyehub/ci\.py

build/lib/pyehub/data_formats/__init__\.py

build/lib/pyehub/data_formats/request_format/__init__\.py

build/lib/pyehub/data_formats/request_format/capacity\.py

build/lib/pyehub/data_formats/request_format/converter\.py

build/lib/pyehub/data_formats/request_format/network\.py

build/lib/pyehub/data_formats/request_format/request_format\.py

build/lib/pyehub/data_formats/request_format/storage\.py

build/lib/pyehub/data_formats/request_format/stream\.py

build/lib/pyehub/data_formats/request_format/time_series\.py

build/lib/pyehub/data_formats/response_format\.py

build/lib/pyehub/datacollect\.py

build/lib/pyehub/energy_hub/__init__\.py

build/lib/pyehub/energy_hub/ehub_model\.py

build/lib/pyehub/energy_hub/input_data\.py

build/lib/pyehub/energy_hub/param_var\.py

build/lib/pyehub/energy_hub/utils\.py

build/lib/pyehub/epsilon_constraint\.py

build/lib/pyehub/excel_to_request_format\.py

build/lib/pyehub/logger\.py

build/lib/pyehub/multiple_hubs\.py

build/lib/pyehub/network_to_request_format\.py

build/lib/pyehub/outputter\.py

build/lib/pyehub/pylp/__init__\.py

build/lib/pyehub/pylp/constraint\.py

build/lib/pyehub/pylp/expression\.py

build/lib/pyehub/pylp/problem\.py

build/lib/pyehub/pylp/tutorial\.py

build/lib/pyehub/pylp/variable\.py

build/lib/pyehub/run\.py

build/lib/pyehub/Time horizon\.py

build/lib/pyehub/viz\.py

dist/pyehub-1\.1\.0-py3-none-any\.whl

dist/pyehub-1\.1\.0\.macosx-10\.7-x86_64\.tar\.gz

dist/pyehub-1\.1\.0\.tar\.gz

pyehub\.egg-info/dependency_links\.txt

pyehub\.egg-info/PKG-INFO

pyehub\.egg-info/requires\.txt

pyehub\.egg-info/SOURCES\.txt

pyehub\.egg-info/top_level\.txt

hub1_minimized_cost\.xlsx

hub2_minimized_cost\.xlsx

hub3_minimized_cost\.xlsx

hub4_minimized_cost\.xlsx

build/lib/pyehub/plots\.py

dist/pyehub-1\.2\.0-py3-none-any\.whl

dist/pyehub-1\.2\.0\.macosx-10\.7-x86_64\.tar\.gz

dist/pyehub-1\.2\.0\.tar\.gz

.gitlab-ci.yml

0 → 100644
+25 −0
Original line number Diff line number Diff line
image: continuumio/miniconda3:latest

variables:
  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
  GLPK_CACHE_DIR: "$CI_PROJECT_DIR/.chache/glpk"

  LD_LIBRARY_PATH: "/lib:/usr/lib:/usr/local/lib"

cache:
  paths:
    - .cache/glpk
    - .cache/pip

before_script:
  - apt update
  - echo 'y\r' | apt-get install build-essential
  - pip install -r requirements.txt
  - pip install pytest
  - apt install unzip
  - mkdir -p $GLPK_CACHE_DIR
  - "[ -e $GLPK_CACHE_DIR/glpk] || (curl -SLO http://ftp.gnu.org/gnu/glpk/glpk-4.65.tar.gz -o $GLPK_CACHE_DIR/glpk && tar -xzf glpk-4.65.tar.gz && cd glpk-4.65 && ./configure && make && make check && make install && cd ..)"

test:
  script:
    - pytest
−5.28 KiB (34.4 KiB)

File changed.

No diff preview for this file type.

−5.06 KiB (34 KiB)

File changed.

No diff preview for this file type.

−5.72 KiB (28.8 KiB)

File changed.

No diff preview for this file type.

Loading