Coder Social home page Coder Social logo

cal-itp / transitstacks Goto Github PK

View Code? Open in Web Editor NEW
0.0 10.0 0.0 1.89 MB

Tools for exploring the Cal-ITP transit technology stack database

License: GNU Affero General Public License v3.0

Python 44.08% Jupyter Notebook 55.92%
transit transit-data

transitstacks's People

Contributors

e-lo avatar thekaveman avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

transitstacks's Issues

[BUG] transitstacks.io.example_dir() loops over non-existent dir

Describe the bug

When calling this method with a non-existent directory name, the code attempts to loop over that directory to build a list of available examples. It should instead loop over the root of the examples directory.

To Reproduce

See the Run output from the Python package GitHub Action

Failing tests

Triggering line of code

transitstacks/io.py:139:

def example_dir(example_name: str):
    """Takes an example name and returns the directory.

    Args:
        example_name: name of example
    """
    
    package_dir = os.path.dirname(os.path.abspath(__file__))
    main_example_dir = os.path.join(os.path.dirname(package_dir), "examples")

    example_dir = os.path.join(main_example_dir, example_name)
    
    if not os.path.exists(example_dir):
        available_examples = [
            name for name in os.listdir(example_dir) if os.path.isdir(name)  #<---- error here
        ]

Thoughts on resolution

def example_dir(example_name: str):
    """Takes an example name and returns the directory.

    Args:
        example_name: name of example
    """
    
    package_dir = os.path.dirname(os.path.abspath(__file__))
    main_example_dir = os.path.join(os.path.dirname(package_dir), "examples")

    example_dir = os.path.join(main_example_dir, example_name)
    
    if not os.path.exists(example_dir):
        available_examples = [
            name for name in os.listdir(main_example_dir) if os.path.isdir(name)  #<---- os.listdir(main_example_dir)
        ]

Full stack trace

[FEATURE] Add Transit Stacks to GCS

User Story

  1. As @mcplanner, I'd like to know which vendors are associated with GTFS errors
  2. As @hunterowens, I'd like our data stack to center around our GCS cloud infrastructure and not directly rely on querying Google Sheets

Priority

Medium

Tests

All.

[BUG] /icons not found when running tests on GitHub Actions

Describe the bug

The icons in /icons are not found when running tests on GitHub Actions which means they aren't getting installed.

To Reproduce

Steps to reproduce the behavior:

  1. Run Github Action test.yml

Thoughts on resolution

Perhaps something is not working with MANIFEST or package data?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.