WP_Query will not display draft posts

You can just 'post_status' => 'any'.

Here is the completed code.

    global $wp_query;

    $ids   = array(130,132);
    $args  = array(
        'post_status' => 'any', 
        // 'post_status' => 'any', // same output
        'post__in' => $ids, 
        'post_type' => 'alpha'  
    );

    $q     = new WP_Query($args);

    foreach ($q->posts as $post) {
        echo $post->id;

    }

Official docs on post_status option
https://developer.wordpress.org/reference/classes/wp_query/#status-parameters